From ae061553d13d1b64fabe2225b5a506f757edf5ff Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Mon, 17 Feb 2014 22:42:21 +0000 Subject: Be consistent and allow only mouse down and mouse wheel for any pane with mouse-select-pane rather than just in copy mode, reported by Balazs Kezes. --- usr.bin/tmux/server-client.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.bin') diff --git a/usr.bin/tmux/server-client.c b/usr.bin/tmux/server-client.c index affef838ab3..c204d3fca83 100644 --- a/usr.bin/tmux/server-client.c +++ b/usr.bin/tmux/server-client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server-client.c,v 1.117 2014/02/14 14:00:18 nicm Exp $ */ +/* $OpenBSD: server-client.c,v 1.118 2014/02/17 22:42:20 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott @@ -324,9 +324,9 @@ server_client_check_mouse(struct client *c, struct window_pane *wp) else if (statusat > 0 && m->y >= (u_int)statusat) m->y = statusat - 1; - /* Is this a pane selection? Allow down only in copy mode. */ + /* Is this a pane selection? */ if (options_get_number(oo, "mouse-select-pane") && - (m->event == MOUSE_EVENT_DOWN || wp->mode != &window_copy_mode)) { + (m->event == MOUSE_EVENT_DOWN || m->event == MOUSE_EVENT_WHEEL)) { window_set_active_at(wp->window, m->x, m->y); server_redraw_window_borders(wp->window); wp = wp->window->active; /* may have changed */ -- cgit v1.2.3