altTab: Restore correct visibility when cycling windows

Commit 3171819c improved window cycling by using a dedicated to clone
for highlighting rather than activating all cycled windows. Original
window actors are hidden while its clone is showing, and shown again
afterwards, however the latter is wrong for actors that are not supposed
to be visible (for example where the window is minimized, or on a different
workspace). Fix this by properly syncing the actor's visibility instead
of showing it unconditionally.

https://bugzilla.gnome.org/show_bug.cgi?id=771536
This commit is contained in:
Florian Müllner 2016-09-13 21:18:17 +02:00
parent 9be46bd212
commit d6a78d61d1

View File

@ -386,7 +386,7 @@ const CyclerHighlight = new Lang.Class({
this._window = w;
if (this._clone.source)
this._clone.source.show();
this._clone.source.sync_visibility();
let windowActor = this._window ? this._window.get_compositor_private()
: null;