GUI: Don't scan subdirectories immediately

This commit is contained in:
Jeffrey Pfau 2015-10-10 20:50:23 -07:00
parent 1a50718c26
commit 8284e7ded2
1 changed files with 2 additions and 16 deletions

View File

@ -116,24 +116,10 @@ static bool _refreshDirectory(struct GUIParams* params, const char* currentPath,
}
struct VDir* vd = dir->openDir(dir, GUIMenuItemListGetPointer(currentFiles, item)->title);
if (vd) {
bool success = false;
struct VDirEntry* de;
while ((de = vd->listNext(vd)) && !success) {
struct VFile* vf2 = vd->openFile(vd, de->name(de), O_RDONLY);
if (!vf2) {
continue;
}
if (filter(vf2)) {
success = true;
}
vf2->close(vf2);
}
vd->close(vd);
if (success) {
++item;
continue;
}
}
struct VFile* vf = dir->openFile(dir, GUIMenuItemListGetPointer(currentFiles, item)->title, O_RDONLY);
if (vf) {
if (filter(vf)) {