Skip to content

Commit

Permalink
fix: 不再处理可能是 nil 的 NSEvent 传入参数
Browse files Browse the repository at this point in the history
  • Loading branch information
ShikiSuen committed May 29, 2023
1 parent 4f17bcd commit 621a3c5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Fire/FireInputController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,7 @@ class FireInputController: IMKInputController {
}

override func handle(_ event: NSEvent!, client sender: Any!) -> Bool {
guard let event = event else { return }
NSLog("[FireInputController] handle: \(event.debugDescription)")

// 在activateServer中有把IMKInputController绑定给CandidatesWindow
Expand Down

0 comments on commit 621a3c5

Please sign in to comment.