QXkbCommon::isLatin1 : Add a lower bound of Latin1

The range of the Latin1 key is from 0x20 to 0xff
in both xkb_keysym and Qt::Key.

Task-number: QTBUG-113387
Task-number: QTBUG-74479
Change-Id: I2eaba3129bead9526910f716c211f637804ab592
Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>
(cherry picked from commit 1652687d34d8e663c53c456b45cf0040570d870d)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
Inho Lee 2023-06-30 09:50:36 +02:00 committed by Qt Cherry-pick Bot
parent cd16e289f6
commit 11456b4d56

View File

@ -60,7 +60,7 @@ public:
static xkb_keysym_t lookupLatinKeysym(xkb_state *state, xkb_keycode_t keycode);
static bool isLatin1(xkb_keysym_t sym) {
return sym <= 0xff;
return sym >= 0x20 && sym <= 0xff;
}
static bool isKeypad(xkb_keysym_t sym) {
return sym >= XKB_KEY_KP_Space && sym <= XKB_KEY_KP_9;