Преглед изворни кода

iOS: Fix long press gesture continuous call to editmode

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
Soomin Lee пре 8 година
родитељ
комит
7e4ae0fa4c
1 измењених фајлова са 2 додато и 1 уклоњено
  1. 2 1
      Sources/VLCLibraryViewController.m

+ 2 - 1
Sources/VLCLibraryViewController.m

@@ -1215,7 +1215,8 @@ static NSString *kUsingTableViewToShowData = @"UsingTableViewToShowData";
 
 - (void)_collectionViewHandleLongPressGesture:(UIGestureRecognizer *) sender
 {
-    [self setEditing:YES animated:YES];
+    if (sender.state == UIGestureRecognizerStateBegan && !self.isEditing)
+        [self setEditing:YES animated:YES];
 }
 
 #pragma mark - UI implementation