]> git.sesse.net Git - vlc/commitdiff
* modules/gui/wxwindows/interface.cpp: fixed special hotkeys with modifiers on win32.
authorGildas Bazin <gbazin@videolan.org>
Mon, 18 Apr 2005 10:42:30 +0000 (10:42 +0000)
committerGildas Bazin <gbazin@videolan.org>
Mon, 18 Apr 2005 10:42:30 +0000 (10:42 +0000)
modules/gui/wxwindows/interface.cpp

index ec9a5f8e614b458cbbf6d349b23d33b77dfb5a60..a3d028543b9d9715d91131fb9599ae0a63335d5c 100644 (file)
@@ -653,7 +653,8 @@ void Interface::SetupHotkeys()
         int i_key = ConvertHotkey( p_hotkeys[i].i_key );
 
 #ifdef WIN32
-        if( i_mod ) i_key = toupper(i_key);
+        if( !(p_hotkeys[i].i_key & KEY_SPECIAL) && i_mod )
+            i_key = toupper(i_key);
 #endif
 
         p_entries[i].Set( i_mod, i_key,