* modules/gui/wxwindows/interface.cpp: fixed special hotkeys with modifiers on win32.

This commit is contained in:
Gildas Bazin 2005-04-18 10:42:30 +00:00
parent 7528fa2439
commit ad67acad03
1 changed files with 2 additions and 1 deletions

View 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,