Skip to content

Commit

Permalink
address reviewer feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
cewert committed Oct 31, 2023
1 parent a942cb5 commit c0f2b7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/search/SearchResults.brs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function onKeyEvent(key as string, press as boolean) as boolean
else if key = "right" and m.searchSelect.itemdata <> invalid and m.searchSelect.itemdata.TotalRecordCount > 0
m.searchSelect.setFocus(true)
return true
else if key = "play"
else if key = "play" and m.searchSelect.rowItemFocused.count() > 0
print "play was pressed from search results"
if m.searchSelect.rowItemFocused <> invalid
m.top.quickPlayNode = m.searchSelect.content.getChild(m.searchSelect.rowItemFocused[0]).getChild(m.searchSelect.rowItemFocused[1])
Expand Down

0 comments on commit c0f2b7f

Please sign in to comment.