Merge pull request #562 from emersion/xwayland-fullscreen-render-children

xwayland: render children window in fullscreen
This commit is contained in:
Tony Crisci 2018-01-15 07:53:32 -05:00 committed by GitHub
commit c690420501
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 43 additions and 8 deletions

View file

@ -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;