From 693afe95d31e940009ff2e98c2901575516d205b Mon Sep 17 00:00:00 2001 From: bruvzg <7645683+bruvzg@users.noreply.github.com> Date: Wed, 22 Feb 2023 13:14:37 +0200 Subject: Fix X11 QUOTELEFT / SECTION physical key mapping. --- platform/linuxbsd/x11/key_mapping_x11.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'platform/linuxbsd/x11') diff --git a/platform/linuxbsd/x11/key_mapping_x11.cpp b/platform/linuxbsd/x11/key_mapping_x11.cpp index e5eba6ccad..85db873dff 100644 --- a/platform/linuxbsd/x11/key_mapping_x11.cpp +++ b/platform/linuxbsd/x11/key_mapping_x11.cpp @@ -232,7 +232,7 @@ void KeyMappingX11::initialize() { scancode_map[0x2E] = Key::L; scancode_map[0x2F] = Key::SEMICOLON; scancode_map[0x30] = Key::APOSTROPHE; - scancode_map[0x31] = Key::SECTION; + scancode_map[0x31] = Key::QUOTELEFT; scancode_map[0x32] = Key::SHIFT; scancode_map[0x33] = Key::BACKSLASH; scancode_map[0x34] = Key::Z; @@ -275,7 +275,7 @@ void KeyMappingX11::initialize() { scancode_map[0x59] = Key::KP_3; scancode_map[0x5A] = Key::KP_0; scancode_map[0x5B] = Key::KP_PERIOD; - scancode_map[0x5E] = Key::QUOTELEFT; + scancode_map[0x5E] = Key::SECTION; scancode_map[0x5F] = Key::F11; scancode_map[0x60] = Key::F12; scancode_map[0x68] = Key::KP_ENTER; -- cgit v1.2.3