Update API docs
This commit is contained in:
parent
7be954dbca
commit
e403b2ce33
|
@ -112,6 +112,11 @@ end sub
|
||||||
' inactiveCheck: Checks if the time since last keypress is greater than or equal to the allowed inactive time of the menu.
|
' inactiveCheck: Checks if the time since last keypress is greater than or equal to the allowed inactive time of the menu.
|
||||||
'
|
'
|
||||||
sub inactiveCheck()
|
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
|
if m.deviceInfo.timeSinceLastKeypress() >= m.top.inactiveTimeout
|
||||||
m.top.action = "hide"
|
m.top.action = "hide"
|
||||||
end if
|
end if
|
||||||
|
|
|
@ -163,14 +163,12 @@ end sub
|
||||||
'
|
'
|
||||||
sub handleShowSubtitleMenuAction()
|
sub handleShowSubtitleMenuAction()
|
||||||
m.top.selectSubtitlePressed = true
|
m.top.selectSubtitlePressed = true
|
||||||
handleHideAction(false)
|
|
||||||
end sub
|
end sub
|
||||||
|
|
||||||
' handleShowVideoInfoPopupAction: Handles action to show video info popup
|
' handleShowVideoInfoPopupAction: Handles action to show video info popup
|
||||||
'
|
'
|
||||||
sub handleShowVideoInfoPopupAction()
|
sub handleShowVideoInfoPopupAction()
|
||||||
m.top.selectPlaybackInfoPressed = true
|
m.top.selectPlaybackInfoPressed = true
|
||||||
handleHideAction(false)
|
|
||||||
end sub
|
end sub
|
||||||
|
|
||||||
' onOSDAction: Process action events from OSD to their respective handlers
|
' onOSDAction: Process action events from OSD to their respective handlers
|
||||||
|
|
Loading…
Reference in New Issue
Block a user