FullscreenUI: Fix focus loss with grid/list button

This commit is contained in:
Stenzek 2025-07-28 20:42:50 +10:00
parent fac47b135a
commit 042930d735
No known key found for this signature in database

View File

@ -7885,6 +7885,7 @@ void FullscreenUI::DrawGameListWindow()
BeginTransition([]() {
s_state.game_list_view =
(s_state.game_list_view == GameListView::Grid) ? GameListView::List : GameListView::Grid;
QueueResetFocus(FocusResetType::ViewChanged);
});
}
}