diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-03-03 08:55:57 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-03-03 08:55:57 +0000 |
commit | c4a6567d1168a9e2c74534ebe286c8403c7fb54e (patch) | |
tree | 9215c10f35d9980d844cc800fb09e900127cb64b /usr.bin/tmux/tmux.h | |
parent | 7176e37c18e3d6009c9e0a9b6dc7c5dcde0f911e (diff) |
The wlmouse offset should be part of the client, not the server. From
Ailin Nemui.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index d34fd78ed1f..f3ffbf6f4ff 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.315 2012/03/03 08:31:18 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.316 2012/03/03 08:55:56 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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 *); |