IGFD: change default sorting order

This commit is contained in:
tildearrow 2023-06-21 04:27:31 -05:00
parent 75948304ab
commit 61fd9d05a0
1 changed files with 3 additions and 2 deletions

View File

@ -1137,8 +1137,9 @@ namespace IGFD
IGFD::FileManager::FileManager() IGFD::FileManager::FileManager()
{ {
puFsRoot = std::string(1u, PATH_SEP); puFsRoot = std::string(1u, PATH_SEP);
for (int i=0; i<4; i++) { puSortingDirection[0]=true;
puSortingDirection[i]=true; for (int i=1; i<4; i++) {
puSortingDirection[i]=false;
} }
} }