WindowManager: ignore ctrl-alt-left/right
Fixes a regression introduced in de72065a
https://bugzilla.gnome.org/show_bug.cgi?id=679005
This commit is contained in:
@ -588,6 +588,10 @@ const WindowManager = new Lang.Class({
|
|||||||
let [action,,,direction] = binding.get_name().split('-');
|
let [action,,,direction] = binding.get_name().split('-');
|
||||||
let direction = Meta.MotionDirection[direction.toUpperCase()];
|
let direction = Meta.MotionDirection[direction.toUpperCase()];
|
||||||
|
|
||||||
|
if (direction != Meta.MotionDirection.UP &&
|
||||||
|
direction != Meta.MotionDirection.DOWN)
|
||||||
|
return;
|
||||||
|
|
||||||
if (action == 'switch')
|
if (action == 'switch')
|
||||||
this.actionMoveWorkspace(direction);
|
this.actionMoveWorkspace(direction);
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user