From d6629c31028742fce3f63b542d4808e8abcba42d Mon Sep 17 00:00:00 2001 From: Stefano Ceccherini Date: Wed, 5 Aug 2009 11:00:35 +0000 Subject: [PATCH] fixed copy/paste error which caused bug #4186. Sorry git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32127 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/interface/MenuItem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kits/interface/MenuItem.cpp b/src/kits/interface/MenuItem.cpp index 11880c5ccc..b03bbd26f2 100644 --- a/src/kits/interface/MenuItem.cpp +++ b/src/kits/interface/MenuItem.cpp @@ -754,7 +754,7 @@ BMenuItem::_DrawShortcutSymbol() } if (fModifiers & B_SHIFT_KEY) { - const BBitmap *shift = MenuPrivate::MenuItemOption(); + const BBitmap *shift = MenuPrivate::MenuItemShift(); const BRect &rect = shift->Bounds(); where.x -= rect.Width() + 1; fSuper->DrawBitmap(shift, where);