From 20ca9da9d0845a772c59ecbbce3262e6bca1a210 Mon Sep 17 00:00:00 2001 From: tibbi Date: Mon, 22 Oct 2018 17:18:40 +0200 Subject: [PATCH] do not consume touch events at video_preview --- .../com/simplemobiletools/gallery/fragments/VideoFragment.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/fragments/VideoFragment.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/fragments/VideoFragment.kt index ebf15ba00..b4a09d681 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/fragments/VideoFragment.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/fragments/VideoFragment.kt @@ -91,7 +91,7 @@ class VideoFragment : ViewPagerFragment(), TextureView.SurfaceTextureListener, S if (context.config.allowDownGesture) { video_preview.setOnTouchListener { v, event -> handleEvent(event) - true + false } video_surface.setOnTouchListener { v, event ->