diff --git a/modules/gui/macosx/MainWindow.m b/modules/gui/macosx/MainWindow.m index 6615cd191156082de11d2030425ca3988138a045..61f0fa05e0af6fec431aa15c40a76840b0c1e8df 100644 --- a/modules/gui/macosx/MainWindow.m +++ b/modules/gui/macosx/MainWindow.m @@ -122,6 +122,7 @@ static VLCMainWindow *_o_sharedInstance = nil; - (BOOL)performKeyEquivalent:(NSEvent *)o_event { + BOOL b_force = NO; // these are key events which should be handled by vlc core, but are attached to a main menu item if( ![self isEvent: o_event forKey: "key-vol-up"] && ![self isEvent: o_event forKey: "key-vol-down"] && @@ -132,8 +133,10 @@ static VLCMainWindow *_o_sharedInstance = nil; if([[NSApp mainMenu] performKeyEquivalent:o_event]) return TRUE; } + else + b_force = YES; - return [[VLCMain sharedInstance] hasDefinedShortcutKey:o_event] || + return [[VLCMain sharedInstance] hasDefinedShortcutKey:o_event force:b_force] || [(VLCControls *)[[VLCMain sharedInstance] controls] keyEvent:o_event]; } diff --git a/modules/gui/macosx/intf.h b/modules/gui/macosx/intf.h index 61e0cae887476de7e9fe0e4c6644973180f867b6..9b0877b1f0995350b61270c44dfb1a9d8a45d1f4 100644 --- a/modules/gui/macosx/intf.h +++ b/modules/gui/macosx/intf.h @@ -175,7 +175,7 @@ struct intf_sys_t - (NSString *)localizedString:(const char *)psz; - (char *)delocalizeString:(NSString *)psz; - (NSString *)wrapString: (NSString *)o_in_string toWidth: (int)i_width; -- (BOOL)hasDefinedShortcutKey:(NSEvent *)o_event; +- (BOOL)hasDefinedShortcutKey:(NSEvent *)o_event force:(BOOL)b_force; - (NSString *)VLCKeyToString:(NSString *)theString; - (unsigned int)VLCModifiersToCocoa:(NSString *)theString; - (void)updateCurrentlyUsedHotkeys; diff --git a/modules/gui/macosx/intf.m b/modules/gui/macosx/intf.m index ae2603e5fd16d139adb7d2e7d36e21a1c8f826fc..fcc7cc56099a8a736d87996d1f44de2cd29b90bf 100644 --- a/modules/gui/macosx/intf.m +++ b/modules/gui/macosx/intf.m @@ -1315,7 +1315,7 @@ unsigned int CocoaKeyToVLC( unichar i_key ) * shortcut key. If it is, pass it off to VLC for handling and return YES, * otherwise ignore it and return NO (where it will get handled by Cocoa). *****************************************************************************/ -- (BOOL)hasDefinedShortcutKey:(NSEvent *)o_event +- (BOOL)hasDefinedShortcutKey:(NSEvent *)o_event force:(BOOL)b_force { unichar key = 0; vlc_value_t val; @@ -1346,7 +1346,7 @@ unsigned int CocoaKeyToVLC( unichar i_key ) return YES; } - if( val.i_int == 0 ) // ignore only when no modifier is pressed + if( !b_force ) { switch( key ) {