From 6699682efb1f1e5dac5cbb5cacc512a370b1f523 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Wed, 21 Dec 2022 20:28:43 +0100 Subject: [PATCH] Fixed an issue where the 'jump to game' help prompt could disappear from the grouped custom collections system. --- es-app/src/views/GamelistView.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/es-app/src/views/GamelistView.cpp b/es-app/src/views/GamelistView.cpp index c22226195..110217586 100644 --- a/es-app/src/views/GamelistView.cpp +++ b/es-app/src/views/GamelistView.cpp @@ -418,9 +418,10 @@ std::vector GamelistView::getHelpPrompts() if (mRoot->getSystem()->getThemeFolder() == "custom-collections" && !CollectionSystemsManager::getInstance()->isEditing() && mCursorStack.empty() && - ViewController::getInstance()->getState().viewing == ViewController::GAMELIST && - ViewController::getInstance()->getState().viewstyle != ViewController::BASIC) { - prompts.push_back(HelpPrompt("y", "jump to game")); + ViewController::getInstance()->getState().viewing == ViewController::GAMELIST) { + if (!(mLegacyMode && + ViewController::getInstance()->getState().viewstyle == ViewController::BASIC)) + prompts.push_back(HelpPrompt("y", "jump to game")); } else if (mRoot->getSystem()->isGameSystem() && (mRoot->getSystem()->getThemeFolder() != "custom-collections" ||