aboutsummaryrefslogtreecommitdiffstats
path: root/Copy Mailto/QuitButton.m
blob: ed33198315336ae8cc8fd0cfaa176951e94fbdcf (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 tw. All rights reserved.
//

#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