浏览代码

VLCPlaylistCollectionViewCell: Fix collectionView cells not shaking in a folder

Signed-off-by: Carola Nitz <nitz.carola@googlemail.com>
(cherry picked from commit eb3454c0e2a8209888c003de745084e6d5f18a31)
Soomin Lee 7 年之前
父节点
当前提交
371150cf23
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      Sources/VLCPlaylistCollectionViewCell.m

+ 1 - 2
Sources/VLCPlaylistCollectionViewCell.m

@@ -45,8 +45,7 @@
 {
     self.isSelectedView.hidden = !editing;
 
-    if (!([_mediaObject isKindOfClass:[MLFile class]] && [((MLFile *)_mediaObject).labels count] > 0))
-        [self shake:editing];
+    [self shake:editing];
     [self selectionUpdate];
     [self _updatedDisplayedInformationForKeyPath:@"editing"];
 }