From 77fcf68ea3441922473f7cbc5a70a08257ee83ca Mon Sep 17 00:00:00 2001 From: Adel Gadllah Date: Wed, 26 May 2010 22:14:00 +0200 Subject: [PATCH] [chrome] Ignore fullscreen flag when in overview Ignore the fullscreen flag when we are in the overview, otherwise we might up not showing actors like the panel even though they have visibleInOverview set to true. https://bugzilla.gnome.org/show_bug.cgi?id=619693 --- js/ui/chrome.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/chrome.js b/js/ui/chrome.js index b42989b9d..9b920c899 100644 --- a/js/ui/chrome.js +++ b/js/ui/chrome.js @@ -204,7 +204,7 @@ Chrome.prototype = { let actorData = this._trackedActors[i]; if (this._inOverview && !actorData.visibleInOverview) this.actor.set_skip_paint(actorData.actor, true); - else if (this._inFullscreen && !actorData.visibleInFullscreen) + else if (!this._inOverview && this._inFullscreen && !actorData.visibleInFullscreen) this.actor.set_skip_paint(actorData.actor, true); else this.actor.set_skip_paint(actorData.actor, false);