mirror of
https://github.com/elementary/gala.git
synced 2024-12-30 04:34:17 +03:00
Fix dialogs disappearing after alt-tabbing introduced in rev248
This commit is contained in:
parent
ec35ed6cca
commit
0f6cd8c96b
@ -134,7 +134,7 @@ namespace Gala
|
||||
dock_window.show ();
|
||||
dock_window.animate (AnimationMode.LINEAR, 250, opacity : 255);
|
||||
}
|
||||
|
||||
|
||||
foreach (var clone in window_clones) {
|
||||
//current window stays on top
|
||||
if ((clone.source as Meta.WindowActor).get_meta_window () == current_window)
|
||||
@ -164,6 +164,11 @@ namespace Gala
|
||||
foreach (var clone in window_clones)
|
||||
remove_clone (clone);
|
||||
window_clones.clear ();
|
||||
|
||||
//need to go through all the windows because of hidden dialogs
|
||||
foreach (var window in Meta.Compositor.get_window_actors (screen)) {
|
||||
window.show ();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user