diff options
author | emersion <contact@emersion.fr> | 2017-10-05 16:24:45 +0200 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2017-10-05 19:10:24 +0200 |
commit | 267f24753f010e6ac7e49f7bfb27a9c85f40b62d (patch) | |
tree | 5b49ce6c014e57c37574081f8dc8c773b2a3db15 /include | |
parent | ca68ef37f056562206b0c4b0442cbfedc8a5e5f3 (diff) |
Add support for WM_HINTS
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/xwayland.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/wlr/xwayland.h b/include/wlr/xwayland.h index 3cbaee59..73df1ea9 100644 --- a/include/wlr/xwayland.h +++ b/include/wlr/xwayland.h @@ -59,8 +59,10 @@ struct wlr_xwayland_surface { uint32_t motif_hints[5]; #ifdef HAS_XCB_ICCCM + xcb_icccm_wm_hints_t hints; xcb_size_hints_t size_hints; #else + char hints_padding[36]; char size_hints_padding[72]; #endif |