From acf506befa8755947dadcfff2eaccd9769371e23 Mon Sep 17 00:00:00 2001 From: ShikiSuen Date: Mon, 25 Jul 2022 18:13:56 +0800 Subject: [PATCH] KeyHandler // Return true after handling candidate End key. --- .../Modules/ControllerModules/KeyHandler_HandleCandidate.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Modules/ControllerModules/KeyHandler_HandleCandidate.swift b/Source/Modules/ControllerModules/KeyHandler_HandleCandidate.swift index fd6a52f2..f8e6a067 100644 --- a/Source/Modules/ControllerModules/KeyHandler_HandleCandidate.swift +++ b/Source/Modules/ControllerModules/KeyHandler_HandleCandidate.swift @@ -276,6 +276,7 @@ extension KeyHandler { } else { ctlCandidateCurrent.selectedCandidateIndex = candidates.count - 1 } + return true } }