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
This commit is contained in:
Joachim Seemer 2009-08-27 14:21:25 +00:00
parent d7571ebcf7
commit 9e8e4a372f
1 changed files with 3 additions and 3 deletions

View File

@ -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);