diff options
author | 2019-05-09 14:09:32 +0000 | |
---|---|---|
committer | 2019-05-09 14:09:32 +0000 | |
commit | bdacbbee81a694599e23157084603bb68b1cc03b (patch) | |
tree | 921f7bb3771f52bfd366ac8e742f76d1644edf33 /usr.bin/tmux/tmux.h | |
parent | disable stack printing for now since at least arm64 can't print them (diff) | |
download | wireguard-openbsd-bdacbbee81a694599e23157084603bb68b1cc03b.tar.xz wireguard-openbsd-bdacbbee81a694599e23157084603bb68b1cc03b.zip |
Save mouse buttons as well as position.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 98d1e0e66c1..05b75f6ecff 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.892 2019/05/09 13:12:59 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.893 2019/05/09 14:09:32 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1168,6 +1168,7 @@ struct tty { u_int mouse_last_x; u_int mouse_last_y; + u_int mouse_last_b; int mouse_drag_flag; void (*mouse_drag_update)(struct client *, struct mouse_event *); |