Browse Source

handle remoteControl events for next and back

Carola Nitz 11 years ago
parent
commit
b4f67543dd
1 changed files with 3 additions and 0 deletions
  1. 3 0
      Sources/VLCMovieViewController.m

+ 3 - 0
Sources/VLCMovieViewController.m

@@ -716,12 +716,15 @@
 
         case UIEventSubtypeRemoteControlNextTrack:
             [self forward:nil];
+            break;
 
         case UIEventSubtypeRemoteControlPreviousTrack:
             [self backward:nil];
+            break;
 
         case UIEventSubtypeRemoteControlStop:
             [self closePlayback:nil];
+            break;
 
         default:
             break;