From 6c527c1bb4d28dadfea80e57e4570cc4c5496c9e Mon Sep 17 00:00:00 2001 From: Rui Matos Date: Thu, 30 May 2013 14:29:31 +0200 Subject: [PATCH] osdWindow: Make sure the OSD is always our topmost chrome element In particular this fixes the OSD showing up behind a modal dialog's lightbox. https://bugzilla.gnome.org/show_bug.cgi?id=701269 --- js/ui/osdWindow.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/ui/osdWindow.js b/js/ui/osdWindow.js index b0a70e12b..09d03549b 100644 --- a/js/ui/osdWindow.js +++ b/js/ui/osdWindow.js @@ -138,6 +138,7 @@ const OsdWindow = new Lang.Class({ if (!this.actor.visible) { this.actor.show(); this.actor.opacity = 0; + this.actor.get_parent().set_child_above_sibling(this.actor, null); Tweener.addTween(this.actor, { opacity: 255,