mirror of
https://github.com/godotengine/godot.git
synced 2025-04-01 00:41:35 +08:00
Merge pull request #99800 from amarsero/bone2d-redo-crash
Fix use after free in redo of "Create Custom Bone2D(s) from Node(s)"
This commit is contained in:
commit
e55ea94c73
@ -4843,11 +4843,12 @@ void CanvasItemEditor::_popup_callback(int p_op) {
|
||||
undo_redo->add_do_method(new_bone, "add_child", n2d);
|
||||
undo_redo->add_do_method(n2d, "set_transform", Transform2D());
|
||||
undo_redo->add_do_method(this, "_set_owner_for_node_and_children", new_bone, editor_root);
|
||||
undo_redo->add_do_reference(new_bone);
|
||||
|
||||
undo_redo->add_undo_method(new_bone, "remove_child", n2d);
|
||||
undo_redo->add_undo_method(n2d_parent, "add_child", n2d);
|
||||
undo_redo->add_undo_method(n2d_parent, "remove_child", new_bone);
|
||||
undo_redo->add_undo_method(n2d, "set_transform", new_bone->get_transform());
|
||||
undo_redo->add_undo_method(new_bone, "queue_free");
|
||||
undo_redo->add_undo_method(this, "_set_owner_for_node_and_children", n2d, editor_root);
|
||||
}
|
||||
undo_redo->commit_action();
|
||||
|
Loading…
x
Reference in New Issue
Block a user