diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-10-06 09:02:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-06 09:02:14 -0400 |
commit | bcbf78ddaf1fc219b477faf3b9e5e410c62c1d0d (patch) | |
tree | d42d150e94ea05f385b5251b84c67f140fe54892 /xwayland | |
parent | b2d478a4189ffd96dc6158003f5cde76b70bd368 (diff) | |
parent | c22b02618c0264a06999bab6e2930321f9589319 (diff) |
Merge pull request #222 from versusvoid/flush-xwayland-resize
Flush xwayland surface configuration
Diffstat (limited to 'xwayland')
-rw-r--r-- | xwayland/xwm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xwayland/xwm.c b/xwayland/xwm.c index a4091d1f..852c065c 100644 --- a/xwayland/xwm.c +++ b/xwayland/xwm.c @@ -735,6 +735,7 @@ void wlr_xwayland_surface_configure(struct wlr_xwayland *wlr_xwayland, XCB_CONFIG_WINDOW_BORDER_WIDTH; uint32_t values[] = {x, y, width, height, 0}; xcb_configure_window(xwm->xcb_conn, surface->window_id, mask, values); + xcb_flush(xwm->xcb_conn); } void wlr_xwayland_surface_close(struct wlr_xwayland *wlr_xwayland, |