From e6b43288a7ba6c26d09a78912b5ac9eff7ab354e Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Sat, 26 Sep 2020 13:05:07 +0200 Subject: [PATCH] Fixed an issue where the gamelists were not sorted after multi-scraping. --- es-app/src/guis/GuiScraperMulti.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-app/src/guis/GuiScraperMulti.cpp b/es-app/src/guis/GuiScraperMulti.cpp index 54d58124a..0254791e7 100644 --- a/es-app/src/guis/GuiScraperMulti.cpp +++ b/es-app/src/guis/GuiScraperMulti.cpp @@ -106,7 +106,7 @@ GuiScraperMulti::~GuiScraperMulti() // View type probably changed (basic -> detailed). for (auto it = SystemData::sSystemVector.cbegin(); it !=SystemData::sSystemVector.cend(); it++) - ViewController::get()->reloadGameListView(*it, false); + (*it)->sortSystem(); } void GuiScraperMulti::onSizeChanged()