Fix keyboard event key codes when using Wayland
Correct the confusion between compile- and run-time checks for X11. Closes #17848.
This commit is contained in:
@@ -932,9 +932,11 @@ wxTranslateGTKKeyEventToWx(wxKeyEvent& event,
|
|||||||
// got one
|
// got one
|
||||||
key_code = keysymNormalized ? keysymNormalized : keysym;
|
key_code = keysymNormalized ? keysymNormalized : keysym;
|
||||||
}
|
}
|
||||||
#else
|
else
|
||||||
key_code = keysym;
|
#endif // GDK_WINDOWING_X11
|
||||||
#endif
|
{
|
||||||
|
key_code = keysym;
|
||||||
|
}
|
||||||
|
|
||||||
// as explained above, we want to have lower register key codes
|
// as explained above, we want to have lower register key codes
|
||||||
// normally but for the letter keys we want to have the upper ones
|
// normally but for the letter keys we want to have the upper ones
|
||||||
|
Reference in New Issue
Block a user