From a585c00744e5b7256a651a59b306a1acec8467c3 Mon Sep 17 00:00:00 2001 From: pjft Date: Thu, 15 Mar 2018 20:46:09 +0000 Subject: [PATCH] Fix crash when changing theme from within a collection that'll no longer be present at the carousel level --- es-app/src/guis/GuiMenu.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/es-app/src/guis/GuiMenu.cpp b/es-app/src/guis/GuiMenu.cpp index 86fd9538b..b81fe8119 100644 --- a/es-app/src/guis/GuiMenu.cpp +++ b/es-app/src/guis/GuiMenu.cpp @@ -261,6 +261,7 @@ void GuiMenu::openUISettings() if(needReload) { CollectionSystemManager::get()->updateSystemsList(); + ViewController::get()->goToStart(); ViewController::get()->reloadAll(); // TODO - replace this with some sort of signal-based implementation } });