From e403b2ce331c359d53f6bd6a012c8bfe97833421 Mon Sep 17 00:00:00 2001 From: jellyfin-bot Date: Sun, 19 Nov 2023 12:22:50 +0000 Subject: [PATCH] Update API docs --- docs/api/components_video_OSD.bs.html | 5 +++++ docs/api/components_video_VideoPlayerView.bs.html | 2 -- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/api/components_video_OSD.bs.html b/docs/api/components_video_OSD.bs.html index 7c409f193..2e82129b2 100644 --- a/docs/api/components_video_OSD.bs.html +++ b/docs/api/components_video_OSD.bs.html @@ -112,6 +112,11 @@ ' inactiveCheck: Checks if the time since last keypress is greater than or equal to the allowed inactive time of the menu. ' sub inactiveCheck() + ' If user is currently seeing a dialog box, ignore inactive check + if m.global.sceneManager.callFunc("isDialogOpen") + return + end if + if m.deviceInfo.timeSinceLastKeypress() >= m.top.inactiveTimeout m.top.action = "hide" end if diff --git a/docs/api/components_video_VideoPlayerView.bs.html b/docs/api/components_video_VideoPlayerView.bs.html index 79a823d08..f5d068bff 100644 --- a/docs/api/components_video_VideoPlayerView.bs.html +++ b/docs/api/components_video_VideoPlayerView.bs.html @@ -163,14 +163,12 @@ ' sub handleShowSubtitleMenuAction() m.top.selectSubtitlePressed = true - handleHideAction(false) end sub ' handleShowVideoInfoPopupAction: Handles action to show video info popup ' sub handleShowVideoInfoPopupAction() m.top.selectPlaybackInfoPressed = true - handleHideAction(false) end sub ' onOSDAction: Process action events from OSD to their respective handlers