diff --git a/kwinbindings.cpp b/kwinbindings.cpp index a0f56bf388..46129f1979 100644 --- a/kwinbindings.cpp +++ b/kwinbindings.cpp @@ -221,25 +221,19 @@ along with this program. If not, see . a = actionCollection->addAction( "Group:Tiling" ); a->setText( i18n("Tiling") ); - DEF( I18N_NOOP("Toggle Tiling"), Qt::SHIFT+Qt::ALT+Qt::Key_F11, slotToggleTiling() ); - DEF( I18N_NOOP("Toggle Orientation"), Qt::META+Qt::Key_Space, slotToggleOrientation() ); - DEF( I18N_NOOP("Increase Ratio"), Qt::META+Qt::Key_Right, slotTileIncreaseRatio() ); - DEF( I18N_NOOP("Decrease Ratio"), Qt::META+Qt::Key_Left, slotTileDecreaseRatio() ); + 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 Left") , Qt::SHIFT+Qt::META+Qt::Key_H, slotMoveLeft() ); - DEF( I18N_NOOP("Move Right") , Qt::SHIFT+Qt::META+Qt::Key_L, slotMoveRight() ); - DEF( I18N_NOOP("Move Up") , Qt::SHIFT+Qt::META+Qt::Key_K, slotMoveTop() ); - DEF( I18N_NOOP("Move Down") , Qt::SHIFT+Qt::META+Qt::Key_J, slotMoveBottom() ); + 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("Next Layout"), Qt::META+Qt::Key_PageDown, slotNextTileLayout() ); DEF( I18N_NOOP("Previous Layout"), Qt::META+Qt::Key_PageUp, slotPreviousTileLayout() ); - // NOTE: temporary - DEF( I18N_NOOP("Test Dump tiles"), Qt::META+Qt::Key_D, dumpTiles() ); - DEF( I18N_NOOP("Test Below Cursor"), Qt::META+Qt::Key_X, belowCursor() ); #undef DEF #undef DEF2