aboutsummaryrefslogtreecommitdiffstats
path: root/Copy Mailto/QuitButton.m
blob: 73314b839d27c898bbf11e5ae72d666210b70448 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
//  QuitButton.m
//  Copy Mailto
//
//  Created by tw on 9/5/18.
//  Copyright © 2018 Teddy Wing
//

#import "QuitButton.h"

@implementation QuitButton

// Quit the application on "q" or "Escape"
- (void)keyDown:(NSEvent *)theEvent
{
    if ([[theEvent characters] isEqualToString:@"q"] ||
        [theEvent keyCode] == kVK_Escape) {
        [NSApp terminate:self];
    }
}

@end