translate VK_OEM_PLUS to '=', not '+', because this is what the unmodified key is
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30928 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
ababa106ae
commit
88379f1f2e
@ -4955,7 +4955,7 @@ int wxCharCodeMSWToWX(int keySym, WXLPARAM lParam)
|
||||
case VK_SCROLL: id = WXK_SCROLL; break;
|
||||
|
||||
case VK_OEM_1: id = ';'; break;
|
||||
case VK_OEM_PLUS: id = '+'; break;
|
||||
case VK_OEM_PLUS: id = '='; break;
|
||||
case VK_OEM_COMMA: id = ','; break;
|
||||
case VK_OEM_MINUS: id = '-'; break;
|
||||
case VK_OEM_PERIOD: id = '.'; break;
|
||||
|
Loading…
Reference in New Issue
Block a user