You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
397 B
23 lines
397 B
6 years ago
|
// Copyright © 2015 Abhishek Banthia
|
||
|
|
||
|
import Cocoa
|
||
|
|
||
|
class Panelr: NSPanel {
|
||
|
override var canBecomeKey: Bool {
|
||
|
return true
|
||
|
}
|
||
|
|
||
|
override var canBecomeMain: Bool {
|
||
|
return true
|
||
|
}
|
||
|
|
||
|
override func keyDown(with event: NSEvent) {
|
||
|
super.keyDown(with: event)
|
||
|
|
||
|
// Escape key is pressed
|
||
|
if event.keyCode == 53 {
|
||
|
close()
|
||
|
}
|
||
|
}
|
||
|
}
|