mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +00:00
Fixed an issue where the 'jump to game' help prompt could disappear from the grouped custom collections system.
This commit is contained in:
parent
10b971db5b
commit
6699682efb
|
@ -418,9 +418,10 @@ std::vector<HelpPrompt> GamelistView::getHelpPrompts()
|
||||||
|
|
||||||
if (mRoot->getSystem()->getThemeFolder() == "custom-collections" &&
|
if (mRoot->getSystem()->getThemeFolder() == "custom-collections" &&
|
||||||
!CollectionSystemsManager::getInstance()->isEditing() && mCursorStack.empty() &&
|
!CollectionSystemsManager::getInstance()->isEditing() && mCursorStack.empty() &&
|
||||||
ViewController::getInstance()->getState().viewing == ViewController::GAMELIST &&
|
ViewController::getInstance()->getState().viewing == ViewController::GAMELIST) {
|
||||||
ViewController::getInstance()->getState().viewstyle != ViewController::BASIC) {
|
if (!(mLegacyMode &&
|
||||||
prompts.push_back(HelpPrompt("y", "jump to game"));
|
ViewController::getInstance()->getState().viewstyle == ViewController::BASIC))
|
||||||
|
prompts.push_back(HelpPrompt("y", "jump to game"));
|
||||||
}
|
}
|
||||||
else if (mRoot->getSystem()->isGameSystem() &&
|
else if (mRoot->getSystem()->isGameSystem() &&
|
||||||
(mRoot->getSystem()->getThemeFolder() != "custom-collections" ||
|
(mRoot->getSystem()->getThemeFolder() != "custom-collections" ||
|
||||||
|
|
Loading…
Reference in a new issue