From 8f7b5f8054cb8cc52e30c86590b645d59a9e92fe Mon Sep 17 00:00:00 2001 From: 1hitsong <3330318+1hitsong@users.noreply.github.com> Date: Sun, 12 Nov 2023 07:58:11 -0500 Subject: [PATCH] Change font and position to match trickplay. Fix double trickplay bar --- components/video/PauseMenu.xml | 8 ++++---- components/video/VideoPlayerView.bs | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/components/video/PauseMenu.xml b/components/video/PauseMenu.xml index b51703ce8..d79f4f4e5 100644 --- a/components/video/PauseMenu.xml +++ b/components/video/PauseMenu.xml @@ -1,7 +1,7 @@ - diff --git a/components/video/VideoPlayerView.bs b/components/video/VideoPlayerView.bs index db915dc9f..e13511c30 100644 --- a/components/video/VideoPlayerView.bs +++ b/components/video/VideoPlayerView.bs @@ -618,7 +618,7 @@ function onKeyEvent(key as string, press as boolean) as boolean if not press then return false - if key = "down" + if key = "down" and not m.top.trickPlayBar.visible if not m.LoadMetaDataTask.isIntro m.pauseMenu.visible = true m.pauseMenu.hasFocus = true @@ -626,7 +626,7 @@ function onKeyEvent(key as string, press as boolean) as boolean return true end if - else if key = "up" + else if key = "up" and not m.top.trickPlayBar.visible if not m.LoadMetaDataTask.isIntro m.pauseMenu.visible = true m.pauseMenu.hasFocus = true