diff --git a/Source/Modules/SessionCtl_Delegates.swift b/Source/Modules/SessionCtl_Delegates.swift index 0d51d5e4..9f5ba240 100644 --- a/Source/Modules/SessionCtl_Delegates.swift +++ b/Source/Modules/SessionCtl_Delegates.swift @@ -67,7 +67,10 @@ extension SessionCtl: CtlCandidateDelegate { if isVerticalTyping { return blankResult } // 縱排輸入的場合,選字窗沒有足夠的空間顯示反查結果。 if value.isEmpty { return blankResult } // 空字串沒有需要反查的東西。 if value.contains("_") { return blankResult } - guard let lookupResult = LMMgr.currentLM.currentCassette.reverseLookupMap[value] else { return blankResult } + guard var lookupResult = LMMgr.currentLM.currentCassette.reverseLookupMap[value] else { return blankResult } + for i in 0..