1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-16 14:00:40 +00:00

Merge pull request #34348 from Catchawink/master

Fixed issues with using a relative path in the export window.
This commit is contained in:
Rémi Verschelde
2019-12-17 22:24:34 +01:00
committed by GitHub
2 changed files with 4 additions and 1 deletions

View File

@@ -3792,7 +3792,8 @@ bool String::is_valid_float() const {
String String::path_to_file(const String &p_path) const {
String src = this->replace("\\", "/").get_base_dir();
// Don't get base dir for src, this is expected to be a dir already.
String src = this->replace("\\", "/");
String dst = p_path.replace("\\", "/").get_base_dir();
String rel = src.path_to(dst);
if (rel == dst) // failed