Hi, I override keyUp function to detect if the space key is press everything works but the screen blink with a white flash every time I press space key how can I fix it?
override func keyUp(with event: NSEvent) { //Tap on escape 0x31 = Space if event.keyCode == UInt16(0x31){ print("Hello") } }