Fix OK button not playing episode from episode list
This commit is contained in:
parent
0a9744004c
commit
c480610897
|
@ -93,6 +93,8 @@ function onKeyEvent(key as string, press as boolean) as boolean
|
||||||
focusedItem = getFocusedItem()
|
focusedItem = getFocusedItem()
|
||||||
if isValid(focusedItem)
|
if isValid(focusedItem)
|
||||||
m.top.selectedItem = focusedItem
|
m.top.selectedItem = focusedItem
|
||||||
|
'Prevent the selected item event from double firing
|
||||||
|
m.top.selectedItem = invalid
|
||||||
end if
|
end if
|
||||||
return true
|
return true
|
||||||
end if
|
end if
|
||||||
|
|
|
@ -811,7 +811,7 @@ function CreateSeasonDetailsGroupByID(seriesID as string, seasonID as string) as
|
||||||
group.objects = TVEpisodes(seriesID, seasonID)
|
group.objects = TVEpisodes(seriesID, seasonID)
|
||||||
group.episodeObjects = group.objects
|
group.episodeObjects = group.objects
|
||||||
' watch for button presses
|
' watch for button presses
|
||||||
group.observeField("episodeSelected", m.port)
|
group.observeField("selectedItem", m.port)
|
||||||
group.observeField("quickPlayNode", m.port)
|
group.observeField("quickPlayNode", m.port)
|
||||||
' don't wait for the extras button
|
' don't wait for the extras button
|
||||||
stopLoadingSpinner()
|
stopLoadingSpinner()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user