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

Fixed project name line edit lost input focus.

This commit is contained in:
qichunren
2017-12-06 11:24:01 +08:00
parent 7b02f5591d
commit 7d1c3b5391

View File

@@ -508,7 +508,8 @@ public:
} else if (current->has_setting("application/config/name")) {
project_name->set_text(current->get("application/config/name"));
}
project_name->grab_focus();
project_name->call_deferred("grab_focus");
create_dir->hide();
status_btn->hide();