mirror of
https://github.com/tmate-io/tmate.git
synced 2024-11-27 18:43:11 +01:00
Sync OpenBSD patchset 908:
Only select pane on click, not drag. From hsim at gmx.li.
This commit is contained in:
parent
bb38112ec8
commit
1e7cea407d
@ -1,4 +1,4 @@
|
|||||||
/* $Id: server-client.c,v 1.60 2011-05-18 20:30:14 tcunha Exp $ */
|
/* $Id: server-client.c,v 1.61 2011-05-18 20:31:32 tcunha Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -330,7 +330,8 @@ server_client_handle_key(int key, struct mouse_event *mouse, void *data)
|
|||||||
if (mouse->y + 1 == c->tty.sy &&
|
if (mouse->y + 1 == c->tty.sy &&
|
||||||
options_get_number(oo, "mouse-select-window") &&
|
options_get_number(oo, "mouse-select-window") &&
|
||||||
options_get_number(oo, "status")) {
|
options_get_number(oo, "status")) {
|
||||||
if (mouse->b == MOUSE_UP) {
|
if (mouse->b == MOUSE_UP &&
|
||||||
|
c->last_mouse.b != MOUSE_UP) {
|
||||||
status_set_window_at(c, mouse->x);
|
status_set_window_at(c, mouse->x);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user