Merge pull request #59960 from DanielKriz/fix/missing-favorites
This commit is contained in:
commit
10f5352b98
1 changed files with 4 additions and 3 deletions
|
@ -228,10 +228,11 @@ void FileSystemDock::_update_tree(const Vector<String> &p_uncollapsed_paths, boo
|
||||||
DirAccessRef da = DirAccess::create(DirAccess::ACCESS_RESOURCES);
|
DirAccessRef da = DirAccess::create(DirAccess::ACCESS_RESOURCES);
|
||||||
bool fav_changed = false;
|
bool fav_changed = false;
|
||||||
for (int i = favorite_paths.size() - 1; i >= 0; i--) {
|
for (int i = favorite_paths.size() - 1; i >= 0; i--) {
|
||||||
if (!da->dir_exists(favorite_paths[i])) {
|
if (da->dir_exists(favorite_paths[i]) || da->file_exists(favorite_paths[i])) {
|
||||||
favorite_paths.remove_at(i);
|
continue;
|
||||||
fav_changed = true;
|
|
||||||
}
|
}
|
||||||
|
favorite_paths.remove_at(i);
|
||||||
|
fav_changed = true;
|
||||||
}
|
}
|
||||||
if (fav_changed) {
|
if (fav_changed) {
|
||||||
EditorSettings::get_singleton()->set_favorites(favorite_paths);
|
EditorSettings::get_singleton()->set_favorites(favorite_paths);
|
||||||
|
|
Loading…
Reference in a new issue