1
0
Fork 0

window: Don't try to move hidden attached windows

When a parent window is moved, attached windows (attached modal dialogs
or popups) is moved with it. This is problematic when such a window
hasn't been shown yet (e.g. a popup that has been configured but not
shown), as it'll mean we try to constrain an empty window. Avoid this
issue by not trying to auto-move empty windows.

https://gitlab.gnome.org/GNOME/mutter/merge_requests/496
This commit is contained in:
Jonas Ådahl 2019-03-15 17:10:38 +01:00 committed by Florian Müllner
parent 1bd3c13fe1
commit f2d7165a52

View file

@ -3781,6 +3781,9 @@ static gboolean
maybe_move_attached_window (MetaWindow *window,
void *data)
{
if (window->hidden)
return FALSE;
if (meta_window_is_attached_dialog (window) ||
meta_window_get_placement_rule (window))
meta_window_reposition (window);