Main: fix ctrl-alt-arrow in the overview

Fixes a regression introduced in de72065, which changed the method names
but forgot to update this code path.

https://bugzilla.gnome.org/show_bug.cgi?id=679005
This commit is contained in:
Giovanni Campagna 2012-06-27 22:12:40 +02:00
parent c3d3d346d4
commit 9561f77b17

View File

@ -611,13 +611,13 @@ function _globalKeyPressHandler(actor, event) {
if (!sessionMode.hasWorkspaces)
return false;
wm.actionMoveWorkspaceUp();
wm.actionMoveWorkspace(Meta.MotionDirection.UP);
return true;
case Meta.KeyBindingAction.WORKSPACE_DOWN:
if (!sessionMode.hasWorkspaces)
return false;
wm.actionMoveWorkspaceDown();
wm.actionMoveWorkspace(Meta.MotionDirection.DOWN);
return true;
case Meta.KeyBindingAction.PANEL_RUN_DIALOG:
case Meta.KeyBindingAction.COMMAND_2: