From 9e8e4a372f942a353c1f3d8f53f2187c76c29109 Mon Sep 17 00:00:00 2001 From: Joachim Seemer Date: Thu, 27 Aug 2009 14:21:25 +0000 Subject: [PATCH] Applied a small patch that has ALT+R assigned to 'Rotate Indices Right' and ALT+SHIFT+R to 'Rotate Indices Left'. Fixes #4183. +alphabranch git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32756 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/icon-o-matic/gui/PathListView.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/apps/icon-o-matic/gui/PathListView.cpp b/src/apps/icon-o-matic/gui/PathListView.cpp index eb24459ef1..66f2024ad7 100644 --- a/src/apps/icon-o-matic/gui/PathListView.cpp +++ b/src/apps/icon-o-matic/gui/PathListView.cpp @@ -737,10 +737,10 @@ PathListView::SetMenu(BMenu* menu) fDuplicateMI = new BMenuItem("Duplicate", new BMessage(MSG_DUPLICATE)); fReverseMI = new BMenuItem("Reverse", new BMessage(MSG_REVERSE)); fCleanUpMI = new BMenuItem("Clean Up", new BMessage(MSG_CLEAN_UP)); - fRotateIndicesLeftMI = new BMenuItem("Rotate Indices Left", - new BMessage(MSG_ROTATE_INDICES_CW), 'R'); fRotateIndicesRightMI = new BMenuItem("Rotate Indices Right", - new BMessage(MSG_ROTATE_INDICES_CCW), 'R', B_SHIFT_KEY); + new BMessage(MSG_ROTATE_INDICES_CCW), 'R'); + fRotateIndicesLeftMI = new BMenuItem("Rotate Indices Left", + new BMessage(MSG_ROTATE_INDICES_CW), 'R', B_SHIFT_KEY); fRemoveMI = new BMenuItem("Remove", new BMessage(MSG_REMOVE)); fMenu->AddItem(fAddMI);