mirror of
https://github.com/tmux/tmux.git
synced 2024-11-04 18:08:48 +00:00
Sync OpenBSD patchset 1082:
Only exit mouse mode on scroll wheel when actually reaching the end of the history, from James Nylen.
This commit is contained in:
parent
86c1335452
commit
2c4e8b92ab
@ -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…
Reference in New Issue
Block a user