1
0
Fork 0

Merge pull request #104403 from bruvzg/uid_pm_fix

Fix icons with non-ASCII file names in project manager.
This commit is contained in:
Rémi Verschelde 2025-03-20 16:42:20 +01:00 committed by GitHub
commit 12384d93db
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -311,7 +311,7 @@ String ResourceUID::get_path_from_cache(Ref<FileAccess> &p_cache_file, const Str
ERR_FAIL_COND_V(rl != len, String());
if (singleton->id_to_text(id) == p_uid_string) {
return String(cs.get_data());
return String::utf8(cs.get_data());
}
}
return String();