]> git.sesse.net Git - vlc/commitdiff
ios vout: don't cancel touches in vout
authorFelix Paul Kühne <fkuehne@videolan.org>
Wed, 11 Mar 2015 21:22:54 +0000 (22:22 +0100)
committerFelix Paul Kühne <fkuehne@videolan.org>
Wed, 11 Mar 2015 21:23:21 +0000 (22:23 +0100)
modules/video_output/ios2.m

index eca2e084829a806c503fb0bac2a241ac698703c0..5039febecbe797d5697088ea2591a6434cdebedc 100644 (file)
@@ -167,7 +167,7 @@ static int Open(vlc_object_t *this)
                 [sys->viewContainer.superview addGestureRecognizer:sys->tapRecognizer];
         }
     }
-    sys->tapRecognizer.cancelsTouchesInView = YES;
+    sys->tapRecognizer.cancelsTouchesInView = NO;
 
     /* Initialize common OpenGL video display */
     sys->gl.lock = OpenglESClean;