From 393e6f17ce957a257bb2f1e815656e33748bffe7 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Fri, 5 Feb 2021 17:07:00 +0100 Subject: [PATCH] Fixed an issue where adding a game to a collection would not switch the view style. --- es-app/src/CollectionSystemsManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-app/src/CollectionSystemsManager.cpp b/es-app/src/CollectionSystemsManager.cpp index a38c7b8a5..63109ec72 100644 --- a/es-app/src/CollectionSystemsManager.cpp +++ b/es-app/src/CollectionSystemsManager.cpp @@ -403,7 +403,7 @@ void CollectionSystemsManager::updateCollectionSystem(FileData* file, Collection CollectionFileData* newGame = new CollectionFileData(file, curSys); rootFolder->addChild(newGame); fileIndex->addToIndex(newGame); - ViewController::get()->getGameListView(curSys)->onFileChanged(newGame, false); + ViewController::get()->getGameListView(curSys)->onFileChanged(newGame, true); } }