mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-26 22:43:01 +00:00
IGFD: change default sorting order
This commit is contained in:
parent
75948304ab
commit
61fd9d05a0
1 changed files with 3 additions and 2 deletions
5
extern/igfd/ImGuiFileDialog.cpp
vendored
5
extern/igfd/ImGuiFileDialog.cpp
vendored
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue