diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2012-03-03 08:55:56 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2012-03-03 08:55:56 +0000 |
commit | 4b8bb7770fc06ae61942372ff7edc38b64efb58d (patch) | |
tree | 43a06ee69b0ad2b0a0d1d68049e0fdf154a293a2 /tmux.h | |
parent | 07ac16807f85d7bd5e7c7570f2b11250c65b6228 (diff) | |
download | rtmux-4b8bb7770fc06ae61942372ff7edc38b64efb58d.tar.gz rtmux-4b8bb7770fc06ae61942372ff7edc38b64efb58d.tar.bz2 rtmux-4b8bb7770fc06ae61942372ff7edc38b64efb58d.zip |
The wlmouse offset should be part of the client, not the server. From
Ailin Nemui.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -975,8 +975,6 @@ struct session { struct environ environ; - int wlmouse; - int references; TAILQ_ENTRY(session) gentry; @@ -1199,6 +1197,8 @@ struct client { struct mouse_event last_mouse; + int wlmouse; + int references; }; ARRAY_DECL(clients, struct client *); |