[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
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user