diff --git a/stepmania/PBProject/SMMain.mm b/stepmania/PBProject/SMMain.mm index dc740f65f6..764c616b6c 100755 --- a/stepmania/PBProject/SMMain.mm +++ b/stepmania/PBProject/SMMain.mm @@ -30,7 +30,9 @@ extern "C" - (void)sendEvent:(NSEvent *)event { - if( [event type] != NSKeyDown ) + if( [event type] == NSKeyDown ) + [[self mainMenu] performKeyEquivalent:event]; + else [super sendEvent:event]; }