diff options
author | nicm <nicm> | 2015-04-21 15:21:41 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-04-21 15:21:41 +0000 |
commit | 4cf4302962558be4d5e7a87c57f084d1187fa330 (patch) | |
tree | 4b8d4298c64d82f3bba56f8ef143e9e86917d8ad /server-client.c | |
parent | 1f404f6a23969516007c77eeec89876154c9a4a4 (diff) | |
download | rtmux-4cf4302962558be4d5e7a87c57f084d1187fa330.tar.gz rtmux-4cf4302962558be4d5e7a87c57f084d1187fa330.tar.bz2 rtmux-4cf4302962558be4d5e7a87c57f084d1187fa330.zip |
Don't eat the mouse event that triggers a drag end because we may want
to pass it on to application inside the pane.
Diffstat (limited to 'server-client.c')
-rw-r--r-- | server-client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server-client.c b/server-client.c index b4d1f744..c022a36f 100644 --- a/server-client.c +++ b/server-client.c @@ -391,7 +391,7 @@ server_client_check_mouse(struct client *c) c->tty.mouse_drag_release = NULL; c->tty.mouse_drag_flag = 0; - return (KEYC_NONE); + return (KEYC_MOUSE); /* not a key, but still may want to pass */ } /* Convert to a key binding. */ |