FIX: Number pad 0 is recognized as a symbol when used as a hotkey (fixes #2277)

(cherry picked from commit 8769a5a248)
This commit is contained in:
Alexander Koblov 2025-06-08 01:58:08 +03:00
commit 45bf76b7e2

View file

@ -755,7 +755,9 @@ begin
case Key of
QtKey_Bar: KeySym := XK_bar; // VK_F13
QtKey_Underscore: KeySym := XK_underscore; // VK_SLEEP
{$IF DEFINED(LCLQT)}
QtKey_QuoteLeft: KeySym := XK_quoteleft;
{$ENDIF}
else KeySym := 0;
end;