diff --git a/components/video/VideoPlayerView.bs b/components/video/VideoPlayerView.bs index e33e5d29..d4b51445 100644 --- a/components/video/VideoPlayerView.bs +++ b/components/video/VideoPlayerView.bs @@ -1597,6 +1597,14 @@ function onKeyEvent(key as string, press as boolean) as boolean return false end if + if (key = KeyCode.OK or key = KeyCode.PLAY) and m.top.trickPlayBar.visible and m.isTranscoded + if m.top.state = "paused" + m.top.control = VideoControl.RESUME + m.top.trickPlayBar.visible = false + return true + end if + end if + ' Disable OSD for intro videos if not m.LoadMetaDataTask.isIntro if key = KeyCode.PLAY and not m.top.trickPlayBar.visible diff --git a/source/static/whatsNew/3.1.8.json b/source/static/whatsNew/3.1.8.json index ea9adafb..d0f8dec1 100644 --- a/source/static/whatsNew/3.1.8.json +++ b/source/static/whatsNew/3.1.8.json @@ -17,8 +17,8 @@ }, { "description": "Fix subtitle background opacity affecting text", - "author": "gabeluci" - }, + "author": "gabeluci" + }, { "description": "Prevent subtitles from getting too close to the top or bottom of the screen", "author": "gabeluci" @@ -30,5 +30,9 @@ { "description": "Add setting to select how many items are loaded together on library screens", "author": "brianpardy" + }, + { + "description": "Fix resuming from trickplay on transcoded videos", + "author": "FractalBoy" } -] +] \ No newline at end of file