wayland: Only update position if the with_move flag is set
This was causing the combobox popup to be moved to (0,0) when just the size was asserted.
This commit is contained in:
@ -814,8 +814,11 @@ gdk_window_wayland_move_resize (GdkWindow *window,
|
|||||||
gint width,
|
gint width,
|
||||||
gint height)
|
gint height)
|
||||||
{
|
{
|
||||||
|
if (with_move)
|
||||||
|
{
|
||||||
window->x = x;
|
window->x = x;
|
||||||
window->y = y;
|
window->y = y;
|
||||||
|
}
|
||||||
|
|
||||||
/* If this function is called with width and height = -1 then that means
|
/* If this function is called with width and height = -1 then that means
|
||||||
* just move the window - don't update its size
|
* just move the window - don't update its size
|
||||||
|
|||||||
Reference in New Issue
Block a user