https://bugs.kde.org/show_bug.cgi?id=510658

--- Comment #3 from David Redondo <[email protected]> ---
getExistingDirectory(Url) passes the dir in the constructor
https://invent.kde.org/qt/qt/qtbase/-/blob/dev/src/widgets/dialogs/qfiledialog.cpp#L2581

so as expected   

 QFileDialog d(nullptr, QString(), "/home/david/.config");
d.setFileMode(QFileDialog::Directory);
 d.show();
reproduces the bug. As noted by Oliver the following works as expected and as a
side effect shows all hidden directories: 

 QFileDialog d(nullptr);
 d.setFileMode(QFileDialog::Directory);
 d.setDirectory("/home/david/.config");
 d.show();

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to