workspaceSwitcher: Initially hide after creation
The default state of the switcher is constructed but not visible, so create it that way. This fixes a bug where if we created the switcher but didn't show it or use it we'd end up with an empty, odd looking switcher.
This commit is contained in:
parent
165f4e38b7
commit
a4e53953a9
@ -49,7 +49,8 @@ WorkspaceSwitcherPopup.prototype = {
|
||||
|
||||
this._position();
|
||||
|
||||
this.actor.show();
|
||||
this.actor.hide();
|
||||
|
||||
this._timeoutId = Mainloop.timeout_add(DISPLAY_TIMEOUT, Lang.bind(this, this._onTimeout));
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user