[vlc-commits] ios vout: don't cancel touches in vout

Felix Paul Kühne git at videolan.org
Wed Mar 11 22:25:12 CET 2015


vlc/vlc-2.2 | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Wed Mar 11 22:22:54 2015 +0100| [c5dc8f2328e2e7a812b34c279c7506775e12fac9] | committer: Felix Paul Kühne

ios vout: don't cancel touches in vout

(cherry picked from commit 26ccf4df57357f83a6b565656e07db033b1e2999)

> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=c5dc8f2328e2e7a812b34c279c7506775e12fac9
---

 modules/video_output/ios2.m |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/video_output/ios2.m b/modules/video_output/ios2.m
index 24ab213..b9559d7 100644
--- a/modules/video_output/ios2.m
+++ b/modules/video_output/ios2.m
@@ -165,7 +165,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;



More information about the vlc-commits mailing list