mirror of
https://github.com/brl/mutter.git
synced 2024-11-24 17:10:40 -05:00
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:
parent
1bd3c13fe1
commit
f2d7165a52
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user