diff options
author | emersion <contact@emersion.fr> | 2018-01-14 18:19:37 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-01-14 18:19:37 +0100 |
commit | 65b28b3823f42ba04629defbde136e04619c63a9 (patch) | |
tree | f5568b6de05b7a454a2b921178d668699f6c4b35 /include | |
parent | ce3a48c3169abf6c76a6aa4ce1ba0f81d0071bff (diff) |
xwayland: render children window in fullscreen
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/xwayland.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/wlr/xwayland.h b/include/wlr/xwayland.h index b6671de1..c0135943 100644 --- a/include/wlr/xwayland.h +++ b/include/wlr/xwayland.h @@ -98,9 +98,12 @@ struct wlr_xwayland_surface { char *title; char *class; char *instance; - struct wlr_xwayland_surface *parent; pid_t pid; + struct wl_list children; // wlr_xwayland_surface::parent_link + struct wlr_xwayland_surface *parent; + struct wl_list parent_link; // wlr_xwayland_surface::children + xcb_atom_t *window_type; size_t window_type_len; |