mirror of https://github.com/buggins/dlangui.git
FileDialog: Show only directories with SelectDirectory
When a FileDialog is used to select a directory, displaying files is rather unhelpful. This commit reduces the visual clutter.
This commit is contained in:
parent
65d74b2945
commit
1c6f19aca4
|
@ -443,6 +443,11 @@ class FileDialog : Dialog, CustomGridCellAdapter {
|
|||
if (executableFilterSelected()) {
|
||||
attrFilter |= AttrFilter.executable;
|
||||
}
|
||||
if (_action.id == ACTION_OPEN_DIRECTORY.id) {
|
||||
attrFilter = AttrFilter.dirs;
|
||||
if (showHiddenFiles)
|
||||
attrFilter |= AttrFilter.hidden;
|
||||
}
|
||||
try {
|
||||
_entries = listDirectory(dir, attrFilter, selectedFilter());
|
||||
} catch(Exception e) {
|
||||
|
|
Loading…
Reference in New Issue