InputHandler // Also allow opt+punct to reverse-flip candidates.
This commit is contained in:
parent
6037f6e90c
commit
5c537d3f16
|
@ -196,7 +196,8 @@ extension InputHandler {
|
||||||
|
|
||||||
if input.isSymbolMenuPhysicalKey {
|
if input.isSymbolMenuPhysicalKey {
|
||||||
var updated = true
|
var updated = true
|
||||||
updated = input.isShiftHold ? ctlCandidate.showPreviousLine() : ctlCandidate.showNextLine()
|
let reverseTrigger = input.isShiftHold || input.isOptionHold
|
||||||
|
updated = reverseTrigger ? ctlCandidate.showPreviousLine() : ctlCandidate.showNextLine()
|
||||||
if !updated { delegate.callError("66F3477B") }
|
if !updated { delegate.callError("66F3477B") }
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue