From f5954cde3a5e0e7b416708f6d0e63e358f6f7ea3 Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 21 Jul 2014 20:45:35 +0000 Subject: [PATCH] Revert the up/down wheel emulation for now, there will be a better way to do this along later for those who want it. --- usr.bin/tmux/input-keys.c | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/usr.bin/tmux/input-keys.c b/usr.bin/tmux/input-keys.c index fd3d3c03ae2..c053f2b8b36 100644 --- a/usr.bin/tmux/input-keys.c +++ b/usr.bin/tmux/input-keys.c @@ -1,4 +1,4 @@ -/* $OpenBSD: input-keys.c,v 1.38 2014/07/21 10:25:48 nicm Exp $ */ +/* $OpenBSD: input-keys.c,v 1.39 2014/07/21 20:45:35 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -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) { /* -- 2.20.1