diff --git a/kwinbindings.cpp b/kwinbindings.cpp index 46129f1979..c6f3d05eb3 100644 --- a/kwinbindings.cpp +++ b/kwinbindings.cpp @@ -224,14 +224,14 @@ along with this program. If not, see . DEF( I18N_NOOP("Enable/Disable Tiling"), Qt::SHIFT+Qt::ALT+Qt::Key_F11, slotToggleTiling() ); DEF( I18N_NOOP("Toggle Floating"), Qt::META+Qt::Key_F, slotToggleFloating() ); - DEF( I18N_NOOP("Switch Focus Left") , Qt::META+Qt::Key_H, slotLeft() ); - DEF( I18N_NOOP("Switch Focus Right") , Qt::META+Qt::Key_L, slotRight() ); - DEF( I18N_NOOP("Switch Focus Up") , Qt::META+Qt::Key_K, slotTop() ); - DEF( I18N_NOOP("Switch Focus Down") , Qt::META+Qt::Key_J, slotBottom() ); - DEF( I18N_NOOP("Move Window Left") , Qt::SHIFT+Qt::META+Qt::Key_H, slotMoveLeft() ); - DEF( I18N_NOOP("Move Window Right") , Qt::SHIFT+Qt::META+Qt::Key_L, slotMoveRight() ); - DEF( I18N_NOOP("Move Window Up") , Qt::SHIFT+Qt::META+Qt::Key_K, slotMoveTop() ); - DEF( I18N_NOOP("Move Window Down") , Qt::SHIFT+Qt::META+Qt::Key_J, slotMoveBottom() ); + DEF( I18N_NOOP("Switch Focus Left") , Qt::META+Qt::Key_H, slotFocusTileLeft() ); + DEF( I18N_NOOP("Switch Focus Right") , Qt::META+Qt::Key_L, slotFocusTileRight() ); + DEF( I18N_NOOP("Switch Focus Up") , Qt::META+Qt::Key_K, slotFocusTileTop() ); + DEF( I18N_NOOP("Switch Focus Down") , Qt::META+Qt::Key_J, slotFocusTileBottom() ); + DEF( I18N_NOOP("Move Window Left") , Qt::SHIFT+Qt::META+Qt::Key_H, slotMoveTileLeft() ); + DEF( I18N_NOOP("Move Window Right") , Qt::SHIFT+Qt::META+Qt::Key_L, slotMoveTileRight() ); + DEF( I18N_NOOP("Move Window Up") , Qt::SHIFT+Qt::META+Qt::Key_K, slotMoveTileTop() ); + DEF( I18N_NOOP("Move Window Down") , Qt::SHIFT+Qt::META+Qt::Key_J, slotMoveTileBottom() ); DEF( I18N_NOOP("Next Layout"), Qt::META+Qt::Key_PageDown, slotNextTileLayout() ); DEF( I18N_NOOP("Previous Layout"), Qt::META+Qt::Key_PageUp, slotPreviousTileLayout() );