Merge pull request #66250 from nongvantinh/fixed_invalid_root_name
Fixed root name invalid at scene creation.
This commit is contained in:
commit
43e7db0c69
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ void SceneCreateDialog::update_dialog() {
|
||||||
root_name = scene_name.get_file().get_basename();
|
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."));
|
update_error(node_error_label, MSG_ERROR, TTR("Invalid root node name."));
|
||||||
is_valid = false;
|
is_valid = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue