mirror of
https://github.com/tmate-io/tmate.git
synced 2026-07-27 12:54:02 +00:00
Only exit mouse mode on scroll wheel when actually reaching the end of
the history, from James Nylen.
This commit is contained in:
parent
cd8e536c43
commit
c11da7ca88
1 changed files with 2 additions and 3 deletions
|
|
@ -822,7 +822,7 @@ window_copy_mouse(
|
|||
{
|
||||
struct window_copy_mode_data *data = wp->modedata;
|
||||
struct screen *s = &data->screen;
|
||||
u_int i, old_cy;
|
||||
u_int i;
|
||||
|
||||
if (m->x >= screen_size_x(s))
|
||||
return;
|
||||
|
|
@ -835,10 +835,9 @@ window_copy_mouse(
|
|||
for (i = 0; i < 5; i++)
|
||||
window_copy_cursor_up(wp, 0);
|
||||
} else if ((m->b & MOUSE_BUTTON) == MOUSE_2) {
|
||||
old_cy = data->cy;
|
||||
for (i = 0; i < 5; i++)
|
||||
window_copy_cursor_down(wp, 0);
|
||||
if (old_cy == data->cy)
|
||||
if (data->oy == 0)
|
||||
goto reset_mode;
|
||||
}
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue