aboutsummaryrefslogtreecommitdiff
path: root/xwayland/xwm.c
diff options
context:
space:
mode:
Diffstat (limited to 'xwayland/xwm.c')
-rw-r--r--xwayland/xwm.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/xwayland/xwm.c b/xwayland/xwm.c
index 11a7d9aa..5a36dc21 100644
--- a/xwayland/xwm.c
+++ b/xwayland/xwm.c
@@ -1760,6 +1760,9 @@ void wlr_xwayland_surface_activate(struct wlr_xwayland_surface *xsurface,
void wlr_xwayland_surface_configure(struct wlr_xwayland_surface *xsurface,
int16_t x, int16_t y, uint16_t width, uint16_t height) {
+ int old_w = xsurface->width;
+ int old_h = xsurface->height;
+
xsurface->x = x;
xsurface->y = y;
xsurface->width = width;
@@ -1771,6 +1774,28 @@ void wlr_xwayland_surface_configure(struct wlr_xwayland_surface *xsurface,
XCB_CONFIG_WINDOW_BORDER_WIDTH;
uint32_t values[] = {x, y, width, height, 0};
xcb_configure_window(xwm->xcb_conn, xsurface->window_id, mask, values);
+
+ // If the window size did not change, then we cannot rely on
+ // the X server to generate a ConfigureNotify event. Instead,
+ // we are supposed to send a synthetic event. See ICCCM part
+ // 4.1.5. But we ignore override-redirect windows as ICCCM does
+ // not apply to them.
+ if (width == old_w && height == old_h && !xsurface->override_redirect) {
+ xcb_configure_notify_event_t configure_notify = {
+ .response_type = XCB_CONFIGURE_NOTIFY,
+ .event = xsurface->window_id,
+ .window = xsurface->window_id,
+ .x = x,
+ .y = y,
+ .width = width,
+ .height = height,
+ };
+
+ xcb_send_event(xwm->xcb_conn, 0, xsurface->window_id,
+ XCB_EVENT_MASK_STRUCTURE_NOTIFY,
+ (const char *)&configure_notify);
+ }
+
xcb_flush(xwm->xcb_conn);
}