Disable left/right workspace switching in the overview
Make the overview match the main view so only up/down can be used to switch workspaces (matching the visuals), and not left/right as well. https://bugzilla.gnome.org/show_bug.cgi?id=641887
This commit is contained in:
parent
ef8c9e0abb
commit
739399eb2e
@ -446,12 +446,15 @@ function _globalKeyPressHandler(actor, event) {
|
||||
}
|
||||
|
||||
switch (action) {
|
||||
case Meta.KeyBindingAction.WORKSPACE_LEFT:
|
||||
wm.actionMoveWorkspaceLeft();
|
||||
return true;
|
||||
case Meta.KeyBindingAction.WORKSPACE_RIGHT:
|
||||
wm.actionMoveWorkspaceRight();
|
||||
return true;
|
||||
// left/right would effectively act as synonyms for up/down if we enabled them;
|
||||
// but that could be considered confusing; we also disable them in the main view.
|
||||
//
|
||||
// case Meta.KeyBindingAction.WORKSPACE_LEFT:
|
||||
// wm.actionMoveWorkspaceLeft();
|
||||
// return true;
|
||||
// case Meta.KeyBindingAction.WORKSPACE_RIGHT:
|
||||
// wm.actionMoveWorkspaceRight();
|
||||
// return true;
|
||||
case Meta.KeyBindingAction.WORKSPACE_UP:
|
||||
wm.actionMoveWorkspaceUp();
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user