fixed virtual folder handling when "romdir" is a virtual folder

This commit is contained in:
Thomas Jentzsch 2021-12-12 09:45:49 +01:00
parent ed547df8ad
commit ab1768a0ec
1 changed files with 3 additions and 0 deletions

View File

@ -130,7 +130,10 @@ void LauncherFileListWidget::extendLists(StringList& list)
// Then show virtual dirs in parent dir of "romdir".
if(myRomDir == startRomDir()
&& (myInVirtualDir || BSPF::endsWithIgnoreCase(_node.getPath(), ".zip")))
{
myRomDir = _node.getParent().getPath();
instance().settings().setValue("startromdir", myRomDir);
}
else
myRomDir = startRomDir();