From efacfe37d85fa99ce11d27bc30c8fb276ba50f77 Mon Sep 17 00:00:00 2001 From: ShikiSuen Date: Thu, 18 Aug 2022 09:18:53 +0800 Subject: [PATCH] KeyHandler // Do not handle Ctrl+SymbolMenuKey. --- Source/Modules/ControllerModules/KeyHandler_HandleInput.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Modules/ControllerModules/KeyHandler_HandleInput.swift b/Source/Modules/ControllerModules/KeyHandler_HandleInput.swift index 01223c2f..7d5ff2b5 100644 --- a/Source/Modules/ControllerModules/KeyHandler_HandleInput.swift +++ b/Source/Modules/ControllerModules/KeyHandler_HandleInput.swift @@ -278,7 +278,7 @@ extension KeyHandler { // MARK: Punctuation list - if input.isSymbolMenuPhysicalKey && !input.isShiftHold { + if input.isSymbolMenuPhysicalKey, !input.isShiftHold, !input.isControlHold { if input.isOptionHold { if currentLM.hasUnigramsFor(key: "_punctuation_list") { if composer.isEmpty {