Fix strip out spaces while generating serial number for node name

This commit is contained in:
volzhs 2019-01-08 22:37:45 +09:00
parent f7de2c0cb3
commit 799ed2b989

View file

@ -1070,7 +1070,7 @@ String Node::_generate_serial_child_name(Node *p_child) {
// Assign the base name + separator to name if we have numbers preceded by a separator
if (nums.length() > 0 && name.substr(name_last_index, nnsep.length()) == nnsep) {
name = name.substr(0, name_last_index + nnsep.length()).strip_edges();
name = name.substr(0, name_last_index + nnsep.length());
} else {
nums = "";
}