Skip to content

Commit b941b0b

Browse files
committed
Revert ShellWindow changes
1 parent 9c6a4c8 commit b941b0b

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/ShellClients/ShellWindow.vala

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,16 @@ public abstract class Gala.ShellWindow : PositionedWindow, GestureTarget {
7676
}
7777
}
7878

79+
unowned var manager = ShellClientsManager.get_instance ();
7980
window.foreach_transient ((transient) => {
80-
if (!Utils.get_window_is_normal (window)) {
81-
((Meta.WindowActor) transient.get_compositor_private ()).visible = visible && !animating;
81+
if (manager.is_itself_positioned (transient)) {
82+
return true;
8283
}
8384

85+
unowned var transient_window_actor = (Meta.WindowActor) transient.get_compositor_private ();
86+
87+
transient_window_actor.visible = visible && !animating;
88+
8489
return true;
8590
});
8691
}

0 commit comments

Comments
 (0)