mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-17 22:55:38 +00:00
Fixed an issue where the quick selector would jump to the wrong folder for folder-only gamelists.
This commit is contained in:
parent
5f7ffe98c8
commit
0985867d0f
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue