Skip to content

Commit

Permalink
Merge pull request #1518 from 1hitsong/fixNextButtonFocus
Browse files Browse the repository at this point in the history
  • Loading branch information
cewert authored Nov 20, 2023
2 parents 007bca3 + 1ce210f commit b052194
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions components/video/VideoPlayerView.bs
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit b052194

Please sign in to comment.