Skip to content

Commit

Permalink
fixed a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
unxed committed Mar 31, 2023
1 parent 4cb2c8e commit e69dbf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gtk/window.cpp
Expand Up @@ -1158,7 +1158,7 @@ wxTranslateGTKKeyEventToWx(wxKeyEvent& event,

wxLogTrace(TRACE_KEYS, wxT("\t-> wxKeyCode %ld"), key_code);

// it key_code is Latin char, it should be in upper register
// if key_code is Latin char, it should be in upper register
// to match wx behavoir on MSW
if (islower(key_code)) { key_code = toupper(key_code); }

Expand Down

0 comments on commit e69dbf5

Please sign in to comment.