From: Kristian Høgsberg Date: Sat, 31 Aug 2013 07:00:57 +0000 (-0700) Subject: xwm: Update size when override redirect windows change size X-Git-Tag: 1.2.91~73 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1b6fed41dd6c563207a2df6869fe887a280cabf2;p=platform%2Fupstream%2Fweston.git xwm: Update size when override redirect windows change size --- diff --git a/src/xwayland/window-manager.c b/src/xwayland/window-manager.c index a8b949b..93a912b 100644 --- a/src/xwayland/window-manager.c +++ b/src/xwayland/window-manager.c @@ -578,6 +578,10 @@ weston_wm_handle_configure_notify(struct weston_wm *wm, xcb_generic_event_t *eve weston_wm_window_get_child_position(window, &x, &y); window->x = configure_notify->x; window->y = configure_notify->y; + if (window->override_redirect) { + window->width = configure_notify->width; + window->height = configure_notify->height; + } } static void