aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2018-04-05 17:08:30 -0400
committerLibravatar emersion <contact@emersion.fr>2018-04-05 17:08:30 -0400
commit7ce1038478de99f9328beaa289503826f107ac83 (patch)
treeb97c605d90e72993a4bded65c663d6d947f316bc /include
parentTrack damage of xdg-shell-v6 popups (diff)
downloadsway-7ce1038478de99f9328beaa289503826f107ac83.tar.gz
sway-7ce1038478de99f9328beaa289503826f107ac83.tar.zst
sway-7ce1038478de99f9328beaa289503826f107ac83.zip
Fix xwayland unmanaged surfaces
Diffstat (limited to 'include')
-rw-r--r--include/sway/tree/view.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h
index 2eca7a3e..e52bee66 100644
--- a/include/sway/tree/view.h
+++ b/include/sway/tree/view.h
@@ -87,6 +87,9 @@ struct sway_xwayland_unmanaged {
87 struct wlr_xwayland_surface *wlr_xwayland_surface; 87 struct wlr_xwayland_surface *wlr_xwayland_surface;
88 struct wl_list link; 88 struct wl_list link;
89 89
90 struct wl_listener commit;
91 struct wl_listener map;
92 struct wl_listener unmap;
90 struct wl_listener destroy; 93 struct wl_listener destroy;
91}; 94};
92 95