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.
2 parents a078895 + 8d137bc commit 5088a93Copy full SHA for 5088a93
editor/docks/filesystem_dock.cpp
@@ -981,6 +981,9 @@ void FileSystemDock::_update_file_list(bool p_keep_selection) {
981
// Display the favorites.
982
Vector<String> favorites_list = EditorSettings::get_singleton()->get_favorites();
983
for (const String &favorite : favorites_list) {
984
+ if (!favorite.begins_with("res://")) {
985
+ continue;
986
+ }
987
String text;
988
Ref<Texture2D> icon;
989
if (favorite == "res://") {
0 commit comments