summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNong Van Tinh <vannongtinh@gmail.com>2022-09-22 17:02:07 +0700
committerNong Van Tinh <vannongtinh@gmail.com>2022-09-22 17:02:07 +0700
commit59f933b0e17e23bff91e3eb1fcc83992979eeb5b (patch)
tree46b586948d74f4af590b5cd3ce0de114746fc5c6
parent8e14f9ba21725a9445f3979742f2fc87c8a7b463 (diff)
Fixed root name invalid at scene creation.
-rw-r--r--editor/scene_create_dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/scene_create_dialog.cpp b/editor/scene_create_dialog.cpp
index 573e57ca04..4563dbb0f7 100644
--- a/editor/scene_create_dialog.cpp
+++ b/editor/scene_create_dialog.cpp
@@ -133,7 +133,7 @@ void SceneCreateDialog::update_dialog() {
root_name = scene_name.get_file().get_basename();
}
- if (!root_name.is_valid_identifier()) {
+ if (root_name.is_empty() || root_name.validate_node_name().size() != root_name.size()) {
update_error(node_error_label, MSG_ERROR, TTR("Invalid root node name."));
is_valid = false;
}