Make ".." always appear even if dir is unlistable (likely lacking permissions), closes #1938
This commit is contained in:
parent
e048d1e0a2
commit
adc13e9027
|
@ -339,6 +339,11 @@ void FileDialog::update_file_list() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (dirs.find("..")==NULL) {
|
||||||
|
//may happen if lacking permissions
|
||||||
|
dirs.push_back("..");
|
||||||
|
}
|
||||||
|
|
||||||
dirs.sort_custom<NoCaseComparator>();
|
dirs.sort_custom<NoCaseComparator>();
|
||||||
files.sort_custom<NoCaseComparator>();
|
files.sort_custom<NoCaseComparator>();
|
||||||
|
|
||||||
|
|
|
@ -536,6 +536,11 @@ void EditorFileDialog::update_file_list() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (dirs.find("..")==NULL) {
|
||||||
|
//may happen if lacking permissions
|
||||||
|
dirs.push_back("..");
|
||||||
|
}
|
||||||
|
|
||||||
dirs.sort_custom<NoCaseComparator>();
|
dirs.sort_custom<NoCaseComparator>();
|
||||||
files.sort_custom<NoCaseComparator>();
|
files.sort_custom<NoCaseComparator>();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue