aboutsummaryrefslogtreecommitdiff
path: root/xwayland/xwm.c
diff options
context:
space:
mode:
authorScott Moreau <oreaus@gmail.com>2019-10-08 10:23:10 -0600
committerSimon Ser <contact@emersion.fr>2019-10-08 19:46:06 +0300
commit3b4824a2fe933a829b9710da069f8e067cf7e1a5 (patch)
treecb9b98d7c5b30a79414ae1b11de4f6592c17d75a /xwayland/xwm.c
parent9796abccedef881e99d293a2658c4da9466acd88 (diff)
xwayland: Expose configure request mask
Without this information, compositors have no way to tell whether or not to consider the position information valid. Most notably, a compositor needs to know if it should pick a position for the surface or use the position sent in the configure request.
Diffstat (limited to 'xwayland/xwm.c')
-rw-r--r--xwayland/xwm.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/xwayland/xwm.c b/xwayland/xwm.c
index fba098d1..c35a9abc 100644
--- a/xwayland/xwm.c
+++ b/xwayland/xwm.c
@@ -871,6 +871,7 @@ static void xwm_handle_configure_request(struct wlr_xwm *xwm,
.y = mask & XCB_CONFIG_WINDOW_Y ? ev->y : surface->y,
.width = mask & XCB_CONFIG_WINDOW_WIDTH ? ev->width : surface->width,
.height = mask & XCB_CONFIG_WINDOW_HEIGHT ? ev->height : surface->height,
+ .mask = mask,
};
wlr_log(WLR_DEBUG, "XCB_CONFIGURE_REQUEST (%u) [%ux%u+%d,%d]", ev->window,
wlr_event.width, wlr_event.height, wlr_event.x, wlr_event.y);