Skip to content

Commit e403b2c

Browse files
committed
Update API docs
1 parent 7be954d commit e403b2c

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

docs/api/components_video_OSD.bs.html

+5
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,11 @@
112112
' inactiveCheck: Checks if the time since last keypress is greater than or equal to the allowed inactive time of the menu.
113113
'
114114
sub inactiveCheck()
115+
' If user is currently seeing a dialog box, ignore inactive check
116+
if m.global.sceneManager.callFunc("isDialogOpen")
117+
return
118+
end if
119+
115120
if m.deviceInfo.timeSinceLastKeypress() >= m.top.inactiveTimeout
116121
m.top.action = "hide"
117122
end if

docs/api/components_video_VideoPlayerView.bs.html

-2
Original file line numberDiff line numberDiff line change
@@ -163,14 +163,12 @@
163163
'
164164
sub handleShowSubtitleMenuAction()
165165
m.top.selectSubtitlePressed = true
166-
handleHideAction(false)
167166
end sub
168167

169168
' handleShowVideoInfoPopupAction: Handles action to show video info popup
170169
'
171170
sub handleShowVideoInfoPopupAction()
172171
m.top.selectPlaybackInfoPressed = true
173-
handleHideAction(false)
174172
end sub
175173

176174
' onOSDAction: Process action events from OSD to their respective handlers

0 commit comments

Comments
 (0)