From 1ce210f96bb48b32fb5a5cecfb76ee0635dd374d Mon Sep 17 00:00:00 2001 From: 1hitsong <3330318+1hitsong@users.noreply.github.com> Date: Sun, 19 Nov 2023 17:42:42 -0500 Subject: [PATCH] Don't show nextEpisode button if trickplay bar is shown Fixes #1511 --- components/video/VideoPlayerView.bs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/video/VideoPlayerView.bs b/components/video/VideoPlayerView.bs index 11fe9d27..d86a7e61 100644 --- a/components/video/VideoPlayerView.bs +++ b/components/video/VideoPlayerView.bs @@ -412,6 +412,9 @@ sub checkTimeToDisplayNextEpisode() if m.top.content.contenttype <> 4 then return ' only display when content is type "Episode" if m.nextupbuttonseconds = 0 then return ' is the button disabled? + ' Don't show Next Episode button if trickPlayBar is visible + if m.top.trickPlayBar.visible then return + if isValid(m.top.duration) and isValid(m.top.position) nextEpisodeCountdown = Int(m.top.duration - m.top.position)