Sync OpenBSD patchset 1036:

The wlmouse offset should be part of the client, not the server. From
Ailin Nemui.
This commit is contained in:
Tiago Cunha
2012-03-07 13:35:03 +00:00
parent e4f1fbd008
commit 9d79a56402
2 changed files with 4 additions and 4 deletions

4
tmux.h
View File

@ -971,8 +971,6 @@ struct session {
struct environ environ;
int wlmouse;
int references;
TAILQ_ENTRY(session) gentry;
@ -1195,6 +1193,8 @@ struct client {
struct mouse_event last_mouse;
int wlmouse;
int references;
};
ARRAY_DECL(clients, struct client *);