Fix errors about `UndoRedo` history mismatch when deleting bezier track
This commit is contained in:
parent
da5f39889f
commit
4db3e6e6cd
|
@ -1083,7 +1083,7 @@ void AnimationBezierTrackEdit::gui_input(const Ref<InputEvent> &p_event) {
|
|||
if (I.key == REMOVE_ICON) {
|
||||
if (!read_only) {
|
||||
EditorUndoRedoManager *undo_redo = EditorUndoRedoManager::get_singleton();
|
||||
undo_redo->create_action("Remove Bezier Track");
|
||||
undo_redo->create_action("Remove Bezier Track", UndoRedo::MERGE_DISABLE, animation.ptr());
|
||||
|
||||
undo_redo->add_do_method(this, "_update_locked_tracks_after", track);
|
||||
undo_redo->add_do_method(this, "_update_hidden_tracks_after", track);
|
||||
|
|
Loading…
Reference in New Issue