mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2026-05-09 07:08:07 +02:00
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 <ander.conselvan.de.oliveira@intel.com>
This commit is contained in:
parent
42c8f60506
commit
e018b04c40
1 changed files with 1 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue