[gnome-shell] [chrome] Ignore fullscreen flag when in overview



commit 77fcf68ea3441922473f7cbc5a70a08257ee83ca
Author: Adel Gadllah <adel gadllah gmail com>
Date:   Wed May 26 22:14:00 2010 +0200

    [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 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/chrome.js b/js/ui/chrome.js
index b42989b..9b920c8 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);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]