Commit 499ecdbd authored by David Fuhrmann's avatar David Fuhrmann

macosx: handle more playback menu shortcuts by core

parent 960a19c6
...@@ -122,7 +122,11 @@ static VLCMainWindow *_o_sharedInstance = nil; ...@@ -122,7 +122,11 @@ static VLCMainWindow *_o_sharedInstance = nil;
// these are key events which should be handled by vlc core, but are attached to a main menu item // 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"] && if (![self isEvent: o_event forKey: "key-vol-up"] &&
![self isEvent: o_event forKey: "key-vol-down"] && ![self isEvent: o_event forKey: "key-vol-down"] &&
![self isEvent: o_event forKey: "key-vol-mute"]) { ![self isEvent: o_event forKey: "key-vol-mute"] &&
![self isEvent: o_event forKey: "key-prev"] &&
![self isEvent: o_event forKey: "key-next"] &&
![self isEvent: o_event forKey: "key-jump+short"] &&
![self isEvent: o_event forKey: "key-jump-short"]) {
/* We indeed want to prioritize some Cocoa key equivalent against libvlc, /* We indeed want to prioritize some Cocoa key equivalent against libvlc,
so we perform the menu equivalent now. */ so we perform the menu equivalent now. */
if ([[NSApp mainMenu] performKeyEquivalent:o_event]) if ([[NSApp mainMenu] performKeyEquivalent:o_event])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment