We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
FileSystemDock
1 parent 3c7f9b9 commit 8d137bcCopy full SHA for 8d137bc
editor/docks/filesystem_dock.cpp
@@ -991,6 +991,9 @@ void FileSystemDock::_update_file_list(bool p_keep_selection) {
991
// Display the favorites.
992
Vector<String> favorites_list = EditorSettings::get_singleton()->get_favorites();
993
for (const String &favorite : favorites_list) {
994
+ if (!favorite.begins_with("res://")) {
995
+ continue;
996
+ }
997
String text;
998
Ref<Texture2D> icon;
999
if (favorite == "res://") {
0 commit comments