Fix path with multiple slashes not being corrected on templates
(cherry picked from commit eef0327d1e
)
This commit is contained in:
parent
fb17ac885a
commit
723ad5ef61
1 changed files with 1 additions and 5 deletions
|
@ -54,11 +54,7 @@ String ProjectSettings::get_resource_path() const {
|
||||||
};
|
};
|
||||||
|
|
||||||
String ProjectSettings::localize_path(const String &p_path) const {
|
String ProjectSettings::localize_path(const String &p_path) const {
|
||||||
if (resource_path == "") {
|
if (resource_path.empty() || p_path.begins_with("res://") || p_path.begins_with("user://") ||
|
||||||
return p_path; //not initialized yet
|
|
||||||
}
|
|
||||||
|
|
||||||
if (p_path.begins_with("res://") || p_path.begins_with("user://") ||
|
|
||||||
(p_path.is_abs_path() && !p_path.begins_with(resource_path))) {
|
(p_path.is_abs_path() && !p_path.begins_with(resource_path))) {
|
||||||
return p_path.simplify_path();
|
return p_path.simplify_path();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue