We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0662357 commit ff031bcCopy full SHA for ff031bc
src/ShellClients/PanelClone.vala
@@ -77,6 +77,12 @@ public class Gala.PanelClone : Object {
77
78
private void update_visible () {
79
actor.visible = !panel_hidden;
80
+
81
+ if (actor.visible && !wm.get_display ().get_monitor_in_fullscreen (panel.window.get_monitor ())) {
82
+ // The actor has just been revealed, make sure it's at the top
83
+ // https://github.com/elementary/gala/issues/2080
84
+ actor.get_parent ().set_child_above_sibling (actor, null);
85
+ }
86
}
87
88
private void update_clone_position () {
0 commit comments