mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 00:20:42 -05:00
wayland-surface: Make sure to apply the margin before moving the window
This commit is contained in:
parent
bce812ecbc
commit
66eb4bc34c
@ -166,6 +166,9 @@ static void
|
|||||||
toplevel_surface_commit (MetaWaylandSurface *surface,
|
toplevel_surface_commit (MetaWaylandSurface *surface,
|
||||||
MetaWaylandPendingState *pending)
|
MetaWaylandPendingState *pending)
|
||||||
{
|
{
|
||||||
|
if (pending->frame_extents_changed)
|
||||||
|
meta_window_set_custom_frame_extents (surface->window, &pending->frame_extents);
|
||||||
|
|
||||||
if (pending->newly_attached)
|
if (pending->newly_attached)
|
||||||
{
|
{
|
||||||
MetaWindow *window = surface->window;
|
MetaWindow *window = surface->window;
|
||||||
@ -187,9 +190,6 @@ toplevel_surface_commit (MetaWaylandSurface *surface,
|
|||||||
meta_window_wayland_move_resize (window, new_width, new_height, pending->dx, pending->dy);
|
meta_window_wayland_move_resize (window, new_width, new_height, pending->dx, pending->dy);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pending->frame_extents_changed)
|
|
||||||
meta_window_set_custom_frame_extents (surface->window, &pending->frame_extents);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Loading…
Reference in New Issue
Block a user