The wlmouse offset should be part of the client, not the server. From

Ailin Nemui.
This commit is contained in:
Nicholas Marriott
2012-03-03 08:55:56 +00:00
parent 07ac16807f
commit 4b8bb7770f
2 changed files with 4 additions and 4 deletions

4
tmux.h
View File

@ -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 *);