1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-06 19:41:11 +00:00

Set project name as directory name instead of '.'

This commit is contained in:
volzhs
2016-11-08 21:39:28 +09:00
parent cdc4664226
commit 571f33f863

View File

@@ -141,7 +141,7 @@ private:
}
String sp = p.simplify_path();
project_path->set_text(sp);
_path_text_changed(p);
_path_text_changed(sp);
get_ok()->call_deferred("grab_focus");
}
@@ -150,7 +150,7 @@ private:
String p = p_path;
String sp = p.simplify_path();
project_path->set_text(sp);
_path_text_changed(p);
_path_text_changed(sp);
get_ok()->call_deferred("grab_focus");
}