소스 검색

iOS library: deselect item when triggering playback (closes #15536)

Felix Paul Kühne 9 년 전
부모
커밋
b2606a142c
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      Sources/VLCLibraryViewController.m

+ 2 - 0
Sources/VLCLibraryViewController.m

@@ -849,6 +849,8 @@ static NSString *kUsingTableViewToShowData = @"UsingTableViewToShowData";
         return;
     }
 
+    [collectionView deselectItemAtIndexPath:indexPath animated:NO];
+
     for (NSUInteger x = 0; x < cellCount; x++) {
         VLCPlaylistCollectionViewCell *cell = visibleCells[x];
         if ([cell showsMetaData])