From: Ander Conselvan de Oliveira Date: Fri, 27 Jan 2012 15:17:39 +0000 (+0200) Subject: window: fix resizing of windows backed by shm buffers X-Git-Tag: 20120702.1049~536 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e018b04c40a653f1aa8d0d326270b43e5ef0457b;p=profile%2Fivi%2Fweston.git window: fix resizing of windows backed by shm buffers When window_attach_surface() calls window_get_resize_dx_dy(), window->resize_edges is cleared. However if there is already a pending surface to be attached, the resize won't be done until the following call to window_attach_surface(). In this next call, since resize_edges is now zero, the top-left corner of the window will be unchanged. If the user is resizing from the top or left border, this causes the resize to happen in the wrong direction. This patch changes window_attach_surface() to call window_get_resize_dx_dy() only if an attach will actually happen. Signed-off-by: Ander Conselvan de Oliveira --- diff --git a/clients/window.c b/clients/window.c index d828725..6c00186 100644 --- a/clients/window.c +++ b/clients/window.c @@ -832,8 +832,6 @@ window_attach_surface(struct window *window) case WINDOW_BUFFER_TYPE_EGL_IMAGE: #endif case WINDOW_BUFFER_TYPE_SHM: - window_get_resize_dx_dy(window, &x, &y); - if (window->pending_surface != NULL) return; @@ -844,6 +842,7 @@ window_attach_surface(struct window *window) display_get_buffer_for_surface(display, window->pending_surface); + window_get_resize_dx_dy(window, &x, &y); wl_surface_attach(window->surface, buffer, x, y); window->server_allocation = window->allocation; cb = wl_display_sync(display->display);