workspace: Focus clone when highlighting

We don't use different hover- and focus indications for window previews,
so using keyboard navigation after hovering a clone often has surprising
results when the previous focus window wasn't the selected one. Address
this by simply moving the keyboard focus with the highlight.

https://bugzilla.gnome.org/show_bug.cgi?id=786546
This commit is contained in:
Florian Müllner 2017-08-20 17:53:41 +02:00
parent 8143f734f8
commit 1939e22c22

View File

@ -662,6 +662,7 @@ var WindowOverlay = new Lang.Class({
if (this._hidden) if (this._hidden)
return; return;
this._windowClone.actor.grab_key_focus();
this._animateVisible(); this._animateVisible();
this.emit('show-close-button'); this.emit('show-close-button');
}, },