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 /input-keys.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 'input-keys.c')
-rw-r--r-- | input-keys.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/input-keys.c b/input-keys.c index ae00e4a9..d812a906 100644 --- a/input-keys.c +++ b/input-keys.c @@ -251,5 +251,6 @@ input_key_mouse(struct window_pane *wp, struct mouse_event *m) buf[len++] = x + 33; buf[len++] = y + 33; } + log_debug("writing mouse %.*s", (int)len, buf); bufferevent_write(wp->event, buf, len); } |