ListView navigation with gamepad in Lyra

First, connect the Gamepad (XBox Controller)
Second, open Lyra Start Game and enter Front End
Third, click Options.Then when I use LB/RB to switch pages, a strange thing happens in ListView where the navigation jumps from a random (possible?) item to the first one.I think this is a bug😥
I want to solve this navigation jump problem after switching pages.

In the GameSettings plugin, Lyra defines refresh navigation rules for ListView,
GameSettingPanel.cpp->RefreshSettingsList()

		// If the list directly has the focus, instead of a child widget, then it's likely the panel and items
		// were not yet available when we received focus, so lets go ahead and focus the first item now.
		//if (HasUserFocus(GetOwningPlayer()))
		if (bAdjustListViewPostRefresh)
		{
			ListView_Settings->NavigateToIndex(IndexToSelect);
			ListView_Settings->SetSelectedIndex(IndexToSelect);
		}