From 96165cd21df09410786e9fffaf885817e8f96b61 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Wed, 26 Apr 2023 22:51:57 +0200 Subject: [PATCH] Qt: keep game list data when toggling between list and grid layouts There is no need to do a full hard refresh anymore. --- rpcs3/rpcs3qt/game_list_frame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/rpcs3qt/game_list_frame.cpp b/rpcs3/rpcs3qt/game_list_frame.cpp index b5e04b4ce9..1de18da266 100644 --- a/rpcs3/rpcs3qt/game_list_frame.cpp +++ b/rpcs3/rpcs3qt/game_list_frame.cpp @@ -2515,7 +2515,7 @@ void game_list_frame::SetListMode(const bool& is_list) m_gui_settings->SetValue(gui::gl_listMode, is_list); - Refresh(true); + Refresh(); m_central_widget->setCurrentWidget(m_is_list_layout ? m_game_list : m_game_grid); }