mirror of
https://github.com/tmux/tmux.git
synced 2024-12-13 10:08:47 +00:00
Fix so that when mouse-select-pane and mouse-select-window are both
enabled, clicking on the status line does not change the current pane. From Romain Francoise.
This commit is contained in:
parent
f308ba93aa
commit
d655566ce7
@ -320,6 +320,8 @@ server_client_handle_key(int key, struct mouse_event *mouse, void *data)
|
||||
if (c->flags & CLIENT_READONLY)
|
||||
return;
|
||||
if (options_get_number(oo, "mouse-select-pane") &&
|
||||
(!(options_get_number(oo, "status") &&
|
||||
mouse->y + 1 == c->tty.sy)) &&
|
||||
((!(mouse->b & MOUSE_DRAG) && mouse->b != MOUSE_UP) ||
|
||||
wp->mode != &window_copy_mode)) {
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user