Commit d4adc505 authored by Eric Petit's avatar Eric Petit

Handle Volume Up/Down as well

parent 55f33b61
...@@ -709,6 +709,12 @@ static VLCMain *_o_sharedMainInstance = nil; ...@@ -709,6 +709,12 @@ static VLCMain *_o_sharedMainInstance = nil;
case kRemoteButtonPlay: case kRemoteButtonPlay:
[o_controls play: self]; [o_controls play: self];
break; break;
case kRemoteButtonVolume_Plus:
[o_controls volumeUp: self];
break;
case kRemoteButtonVolume_Minus:
[o_controls volumeDown: self];
break;
default: default:
/* Add here whatever you want other buttons to do */ /* Add here whatever you want other buttons to do */
......
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