mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-18 07:05:39 +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?
|
// 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()) {
|
mCurrentFirstCharacter != mJumpToLetterList->getSelected()) {
|
||||||
if (mJumpToLetterList->getSelected() == FAVORITE_CHAR)
|
if (mJumpToLetterList->getSelected() == FAVORITE_CHAR)
|
||||||
jumpToFirstRow();
|
jumpToFirstRow();
|
||||||
|
|
Loading…
Reference in a new issue