mirror of
https://github.com/tmate-io/tmate.git
synced 2024-11-08 01:04:06 +01:00
Revert the up/down wheel emulation for now, there will be a better way
to do this along later for those who want it.
This commit is contained in:
parent
8e4ae12b4d
commit
b8b00aad5d
15
input-keys.c
15
input-keys.c
@ -205,21 +205,6 @@ input_mouse(struct window_pane *wp, struct session *s, struct mouse_event *m)
|
||||
char buf[40];
|
||||
size_t len;
|
||||
struct paste_buffer *pb;
|
||||
u_int i;
|
||||
|
||||
/*
|
||||
* If the alternate screen is active and hasn't enabled the mouse, send
|
||||
* up and down key presses for the mouse wheel.
|
||||
*/
|
||||
if (wp->saved_grid != NULL && !(wp->screen->mode & ALL_MOUSE_MODES)) {
|
||||
for (i = 0; i < m->scroll; i++) {
|
||||
if (m->wheel == MOUSE_WHEEL_UP)
|
||||
input_key(wp, KEYC_UP);
|
||||
else
|
||||
input_key(wp, KEYC_DOWN);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
if (wp->screen->mode & ALL_MOUSE_MODES) {
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user