From 0985867d0fec74adaa785c0c572dead10217a0b3 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Thu, 30 Jul 2020 13:43:04 +0200 Subject: [PATCH] Fixed an issue where the quick selector would jump to the wrong folder for folder-only gamelists. --- es-app/src/guis/GuiGamelistOptions.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/es-app/src/guis/GuiGamelistOptions.cpp b/es-app/src/guis/GuiGamelistOptions.cpp index 221f032c5..36a4ef01a 100644 --- a/es-app/src/guis/GuiGamelistOptions.cpp +++ b/es-app/src/guis/GuiGamelistOptions.cpp @@ -193,7 +193,8 @@ GuiGamelistOptions::~GuiGamelistOptions() } // Has the user changed the letter using the quick selector? - if ((mFoldersOnTop && getGamelist()->getCursor()->getType() == FOLDER) || + if ((mFoldersOnTop && !mOnlyHasFolders && + getGamelist()->getCursor()->getType() == FOLDER) || mCurrentFirstCharacter != mJumpToLetterList->getSelected()) { if (mJumpToLetterList->getSelected() == FAVORITE_CHAR) jumpToFirstRow();