From d4adc50540fd8c0e4a0dbe755be953d823e1f968 Mon Sep 17 00:00:00 2001 From: Eric Petit Date: Thu, 25 May 2006 15:26:51 +0000 Subject: [PATCH] Handle Volume Up/Down as well --- modules/gui/macosx/intf.m | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/gui/macosx/intf.m b/modules/gui/macosx/intf.m index 31cf524c56..40de372a38 100644 --- a/modules/gui/macosx/intf.m +++ b/modules/gui/macosx/intf.m @@ -709,6 +709,12 @@ static VLCMain *_o_sharedMainInstance = nil; case kRemoteButtonPlay: [o_controls play: self]; break; + case kRemoteButtonVolume_Plus: + [o_controls volumeUp: self]; + break; + case kRemoteButtonVolume_Minus: + [o_controls volumeDown: self]; + break; default: /* Add here whatever you want other buttons to do */ -- 2.39.2