From 25fb8112c565ab162c26c843b2164bd5099a10a1 Mon Sep 17 00:00:00 2001 From: DreamMaoMao <2523610504@qq.com> Date: Thu, 7 Aug 2025 11:34:14 +0800 Subject: [PATCH] opt: not convert kb layout exclude us layout --- src/config/parse_config.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/config/parse_config.h b/src/config/parse_config.h index e9e1040..6241c59 100644 --- a/src/config/parse_config.h +++ b/src/config/parse_config.h @@ -445,14 +445,6 @@ xkb_keysym_t normalize_keysym(xkb_keysym_t sym) { case XKB_KEY_parenright: return XKB_KEY_0; // ) - // 其他布局可能需要的变体(如欧洲键盘) - case XKB_KEY_quotedbl: - return XKB_KEY_2; // " - case XKB_KEY_section: - return XKB_KEY_6; // § - case XKB_KEY_degree: - return XKB_KEY_0; // ° - default: return sym; }