diff options
author | emersion <contact@emersion.fr> | 2018-05-10 11:01:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-10 11:01:33 +0100 |
commit | 8fd58ce72575df0f4cd96bffe55e4eeb04227f18 (patch) | |
tree | 6d5074dd54781a4114bf97b9bb9a684455430db5 /include/wlr | |
parent | f520dd8fac7a92ebe8dc2fc678a2690692ae6252 (diff) | |
parent | 72a75b3a72ca79f0045b43b1ba11feda08a8de3b (diff) |
Merge pull request #967 from VincentVanlaer/xwayland-crash
Fix Xwayland cleanup
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/xwayland.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wlr/xwayland.h b/include/wlr/xwayland.h index 3507e547..7471bbc6 100644 --- a/include/wlr/xwayland.h +++ b/include/wlr/xwayland.h @@ -16,7 +16,6 @@ struct wlr_xwayland { struct wl_client *client; struct wl_event_source *sigusr1_source; struct wl_listener client_destroy; - struct wl_listener display_destroy; struct wlr_xwm *xwm; struct wlr_xwayland_cursor *cursor; int wm_fd[2], wl_fd[2]; @@ -28,6 +27,7 @@ struct wlr_xwayland { int display; int x_fd[2]; struct wl_event_source *x_fd_read_event[2]; + struct wl_listener display_destroy; bool lazy; |