From 51cf93001b721607cbeff3ed38f875583dcc3951 Mon Sep 17 00:00:00 2001 From: tibbi Date: Tue, 8 Jan 2019 13:19:28 +0100 Subject: [PATCH] do not allow pressing prev/next item at videoplayer fullscreen mode --- .../gallery/pro/activities/VideoPlayerActivity.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/VideoPlayerActivity.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/VideoPlayerActivity.kt index 2bc592402..d47601c06 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/VideoPlayerActivity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/VideoPlayerActivity.kt @@ -431,7 +431,7 @@ open class VideoPlayerActivity : SimpleActivity(), SeekBar.OnSeekBarChangeListen it.animate().alpha(newAlpha).start() } video_seekbar.setOnSeekBarChangeListener(if (mIsFullscreen) null else this) - arrayOf(video_curr_time, video_duration).forEach { + arrayOf(video_prev_file, video_next_file, video_curr_time, video_duration).forEach { it.isClickable = !mIsFullscreen } }