소스 검색

VLCFullscreenMovieTVViewController: resume playback after scrubbing

These two lines were removed in the refactoring and you had to press play twice to resume playback.
Adding these lines again fixes this behavior again
Carola Nitz 7 년 전
부모
커밋
6a5ff94848
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      Apple-TV/Playback/VLCFullscreenMovieTVViewController.m

+ 6 - 0
Apple-TV/Playback/VLCFullscreenMovieTVViewController.m

@@ -689,13 +689,19 @@ static const NSInteger VLCJumpInterval = 10000; // 10 seconds
 {
     NSAssert(self.isSeekable, @"Tried to seek while not media is not seekable.");
 
+    VLCPlaybackController *vpc = [VLCPlaybackController sharedInstance];
     self.transportBar.scrubbing = YES;
     [self updateDimmingView];
+    if (vpc.isPlaying) {
+        [vpc playPause];
+    }
 }
 - (void)stopScrubbing
 {
     self.transportBar.scrubbing = NO;
     [self updateDimmingView];
+    VLCPlaybackController *vpc = [VLCPlaybackController sharedInstance];
+    [vpc playPause];
 }
 
 - (void)updateDimmingView