diff options
author | Tony Crisci <tony@dubstepdish.com> | 2018-01-15 07:53:32 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-15 07:53:32 -0500 |
commit | c690420501a35ee83bf6afeb52139b3da2c455c2 (patch) | |
tree | 2631df62e96140109d2c563cdd160824e37af95a /include/wlr | |
parent | 38887a09dc24c662f5f2530d225d89d5fd73f32b (diff) | |
parent | 65b28b3823f42ba04629defbde136e04619c63a9 (diff) |
Merge pull request #562 from emersion/xwayland-fullscreen-render-children
xwayland: render children window in fullscreen
Diffstat (limited to 'include/wlr')
-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; |