Hi,
Device: Roku Ultra 4640X
OS: 9.2 Build 4131-29
1. MarkupList
We are setting `vertFocusAnimationStyle` to `floatingFocus`. The focus should be on the first item when list renders.
On 9.1 and earlier the list renders correctly.
On 9.2 the focus is hidden, pressing down button scrolls the list but the focus is not visible and the list goes beyond its rendering area. We applied quick hack:
m.menu.jumpToItem = m.top.content.getChildCount() - 1
m.menu.jumptToItem = 0
It fixes the list positioning and focus, but it's still a temporary workaround.
Did anyone face such issues?