瀏覽代碼

Move swipe gesture support to version 2.1

Felix Paul Kühne 12 年之前
父節點
當前提交
2a87e99b4a
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      AspenProject/VLCMovieViewController.m

+ 2 - 0
AspenProject/VLCMovieViewController.m

@@ -78,6 +78,7 @@
     recognizer.delegate = self;
     [self.view addGestureRecognizer:recognizer];
 
+#if 0 // FIXME: trac #8742
     UISwipeGestureRecognizer *leftSwipeRecognizer = [[VLCHorizontalSwipeGestureRecognizer alloc] initWithTarget:self action:nil];
     leftSwipeRecognizer.direction = UISwipeGestureRecognizerDirectionLeft;
     leftSwipeRecognizer.delegate = self;
@@ -94,6 +95,7 @@
     downSwipeRecognizer.direction = UISwipeGestureRecognizerDirectionDown;
     downSwipeRecognizer.delegate = self;
     [self.view addGestureRecognizer:downSwipeRecognizer];
+#endif
 
     _aspectRatios = @[@"DEFAULT", @"4:3", @"16:9", @"16:10", @"2.21:1", @"FILL_TO_SCREEN"];
 }