diff options
author | Tobias Langendorf <junglerobba@jngl.one> | 2020-08-29 17:14:55 +0200 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2020-10-10 09:53:41 +0200 |
commit | 657587964e5d8e444ac64829a0aab309c25ff50f (patch) | |
tree | b0991a49d72f845a5783d5c642ccc72326b312c4 /include/sway/tree | |
parent | 392d4808c3012ff978fa5eeb41f0757b3993dcd1 (diff) |
xwayland: support views that change override-redirect status
Diffstat (limited to 'include/sway/tree')
-rw-r--r-- | include/sway/tree/view.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h index 6cfabf3b..9fe710d7 100644 --- a/include/sway/tree/view.h +++ b/include/sway/tree/view.h @@ -162,6 +162,7 @@ struct sway_xwayland_view { struct wl_listener map; struct wl_listener unmap; struct wl_listener destroy; + struct wl_listener override_redirect; }; struct sway_xwayland_unmanaged { @@ -176,6 +177,7 @@ struct sway_xwayland_unmanaged { struct wl_listener map; struct wl_listener unmap; struct wl_listener destroy; + struct wl_listener override_redirect; }; #endif struct sway_view_child; |