Fix workspaceSwitcherPopup
The check in WindowManager._showWorkspaceSwitcher is supposed to check if the overview is _not_ visible. Fix that.
This commit is contained in:
parent
38009309e9
commit
6c13ca817d
@ -315,7 +315,7 @@ WindowManager.prototype = {
|
||||
if (global.screen.n_workspaces == 1)
|
||||
return;
|
||||
|
||||
if (this._workspaceSwitcherPopup == null && Main.overview.visible)
|
||||
if (this._workspaceSwitcherPopup == null && !Main.overview.visible)
|
||||
this._workspaceSwitcherPopup = new WorkspaceSwitcherPopup.WorkspaceSwitcherPopup();
|
||||
|
||||
if (binding == "switch_to_workspace_left") {
|
||||
|
Loading…
Reference in New Issue
Block a user