Sync OpenBSD patchset 903:

Change window with mouse wheel over status line if mouse-select-window
is on, from marcel partap.
pull/1/head
Tiago Cunha 2011-05-05 10:12:33 +00:00
parent b5812013ef
commit 268a2efb16
1 changed files with 17 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $Id: server-client.c,v 1.58 2011-05-05 10:03:05 tcunha Exp $ */
/* $Id: server-client.c,v 1.59 2011-05-05 10:12:33 tcunha Exp $ */
/*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@ -324,11 +324,24 @@ server_client_handle_key(int key, struct mouse_event *mouse, void *data)
server_redraw_window_borders(w);
wp = w->active;
}
if (mouse->y + 1 == c->tty.sy && mouse->b == MOUSE_UP &&
if (mouse->y + 1 == c->tty.sy &&
options_get_number(oo, "mouse-select-window") &&
options_get_number(oo, "status")) {
status_set_window_at(c, mouse->x);
return;
if (mouse->b == MOUSE_UP) {
status_set_window_at(c, mouse->x);
return;
}
if (mouse->b & MOUSE_45) {
if ((mouse->b & MOUSE_BUTTON) == MOUSE_1) {
session_previous(c->session, 0);
server_redraw_session(s);
}
if ((mouse->b & MOUSE_BUTTON) == MOUSE_2) {
session_next(c->session, 0);
server_redraw_session(s);
}
return;
}
}
window_pane_mouse(wp, c->session, mouse);
return;