1 #import "CustomMenuTableView.h"
2 #import "PreferencesController.h"
4 @implementation CustomMenuTableView
6 - (void)keyDown:(NSEvent *)event
8 if ([[event characters] characterAtIndex:0] == '\177') {
9 [[PreferencesController sharedPrefs] deletePressedInTableView:self];
11 [super keyDown:event];