Merge pull request #40300 from 0xafbf/fix-parent-check

Fix parent check for add_child_below_node
This commit is contained in:
Rémi Verschelde 2020-07-14 09:14:28 +02:00 committed by GitHub
commit 37100384c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1189,7 +1189,7 @@ void Node::add_child_below_node(Node *p_node, Node *p_child, bool p_legible_uniq
add_child(p_child, p_legible_unique_name); add_child(p_child, p_legible_unique_name);
if (is_a_parent_of(p_node)) { if (p_node->data.parent == this) {
move_child(p_child, p_node->get_position_in_parent() + 1); move_child(p_child, p_node->get_position_in_parent() + 1);
} else { } else {
WARN_PRINTS("Cannot move under node " + p_node->get_name() + " as " + p_child->get_name() + " does not share a parent."); WARN_PRINTS("Cannot move under node " + p_node->get_name() + " as " + p_child->get_name() + " does not share a parent.");