workspace: Rename show-close-button signal to chrome-visible

Since we no longer only show the close button but the whole window
chrome on hover, change the name of the signal.

https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/346
This commit is contained in:
verdre 2018-11-19 12:28:28 +01:00 committed by Florian Müllner
parent 28a56d24ad
commit 6b0c8c9fe0

View File

@ -670,7 +670,7 @@ var WindowOverlay = class {
return;
this._animateVisible();
this.emit('show-close-button');
this.emit('chrome-visible');
}
_onHideChrome() {
@ -1855,7 +1855,7 @@ var Workspace = class {
this.actor.add_actor(clone.actor);
overlay.connect('show-close-button', () => {
overlay.connect('chrome-visible', () => {
let focus = global.stage.key_focus;
if (focus == null || this.actor.contains(focus))
clone.actor.grab_key_focus();