From kde-commits Wed Apr 27 11:39:52 2005 From: =?utf-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Wed, 27 Apr 2005 11:39:52 +0000 To: kde-commits Subject: kdebase/kwin Message-Id: <20050427113952.DF048630 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=111460200908450 CVS commit by lunakl: Change the order of the shortcuts to Right,Left right with the other actions. BUG: 104618 M +2 -2 kwinbindings.cpp 1.50 --- kdebase/kwin/kwinbindings.cpp #1.49:1.50 @@ -59,8 +59,8 @@ DEF( I18N_NOOP("Activate Window Demanding Attention"), CTRL+ALT+Qt::Key_A, 0, slotActivateAttentionWindow()); DEF( I18N_NOOP("Setup Window Shortcut"), 0, 0, slotSetupWindowShortcut()); - DEF2( "Window Pack Left", I18N_NOOP("Pack Window to the Left"), - 0, 0, slotWindowPackLeft() ); DEF2( "Window Pack Right", I18N_NOOP("Pack Window to the Right"), 0, 0, slotWindowPackRight() ); + DEF2( "Window Pack Left", I18N_NOOP("Pack Window to the Left"), + 0, 0, slotWindowPackLeft() ); DEF2( "Window Pack Up", I18N_NOOP("Pack Window Up"), 0, 0, slotWindowPackUp() );