Using the latest version cannot see directories without setting filters
Corezcy opened this issue · 7 comments
Describe the bug
Using the latest version containing ImGuiFileDialogFlags_DontShowHiddenFiles
, when I set ImGuiFileDialog as this(want to see directories in current path):
ImGuiFileDialog::Instance()->OpenDialog(
"ChooseScenDownloadPath", "Choose Scenario Download Path", nullptr, ".",
"", 1, nullptr, ImGuiFileDialogFlags_DontShowHiddenFiles);
I cannot see directories when changing path. In last version which have not added the
ImGuiFileDialogFlags_DontShowHiddenFiles
, it works.
I can see directories only if set the filters.(eg. set the filters .json,.txt
)
Desktop (please complete the following information):
- OS: Linux zcy-omen 5.4.0-58-generic #64~18.04.1-Ubuntu
when I read your commit and comment this line
ImGuiFileDialog/ImGuiFileDialog.cpp
Line 2159 in 5e22ceb
it works again. But I dont know whether there are any other problems ?
thanks for the report. i will check, im sure i missed somethings :)
what is the vertical line you have on the pictures ?
thanks for the report. i will check, im sure i missed somethings :)
what is the vertical line you have on the pictures ?
The horizontal line is the coordinate system rendering.
Waiting for your good news
sorry for the late reply. its ok now i think.
in directory mode we must have the ability to select the current dir, and just in this mode we must show the dir "."
this condition (you pointed before) was indeed the bug and is now fixed as i know.
its ok for you or you see other bug ?
thanks :)
sorry for the late reply. its ok now i think.
in directory mode we must have the ability to select the current dir, and just in this mode we must show the dir "."
this condition (you pointed before) was indeed the bug and is now fixed as i know.
its ok for you or you see other bug ?
thanks :)
I will download the latest and try ! Very nice and thanks a lot !