Commit ad67acad authored by Gildas Bazin's avatar Gildas Bazin

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

parent 7528fa24
......@@ -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,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment