1
0
Fork 0

Silence missing icon error if UID cache is missing

This commit is contained in:
kobewi 2025-02-10 17:09:34 +01:00
parent 261e7d32d3
commit 266b569641
1 changed files with 3 additions and 0 deletions

View File

@ -502,6 +502,9 @@ ProjectList::Item ProjectList::load_project_data(const String &p_path, bool p_fa
if (icon.is_empty()) {
WARN_PRINT(vformat("Could not load icon from UID for project at path \"%s\". Make sure UID cache exists.", p_path));
}
} else {
// Cache does not exist yet, so ignore and fallback to default icon.
icon = "";
}
}