mirror of
https://github.com/jellyfin/jellyfin-roku.git
synced 2024-11-23 06:09:41 +00:00
Merge pull request #2041 from cewert/wrap-user-settings
This commit is contained in:
commit
95ca59f90f
@ -251,5 +251,19 @@ function onKeyEvent(key as string, press as boolean) as boolean
|
|||||||
settingSelected()
|
settingSelected()
|
||||||
end if
|
end if
|
||||||
|
|
||||||
|
if key = "up" and m.settingsMenu.focusedChild <> invalid and m.settingsMenu.itemFocused = 0
|
||||||
|
m.settingsMenu.jumpToItem = m.settingsMenu.content.getChildCount() - 1
|
||||||
|
|
||||||
|
return true
|
||||||
|
end if
|
||||||
|
|
||||||
|
if key = "down" and m.settingsMenu.focusedChild <> invalid
|
||||||
|
if m.settingsMenu.itemFocused = m.settingsMenu.content.getChildCount() - 1
|
||||||
|
m.settingsMenu.jumpToItem = 0
|
||||||
|
|
||||||
|
return true
|
||||||
|
end if
|
||||||
|
end if
|
||||||
|
|
||||||
return false
|
return false
|
||||||
end function
|
end function
|
||||||
|
Loading…
Reference in New Issue
Block a user