Browse Source

Fix errors about `UndoRedo` history mismatch when deleting bezier track

Mikael Hermansson 1 year ago
parent
commit
4db3e6e6cd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      editor/animation_bezier_editor.cpp

+ 1 - 1
editor/animation_bezier_editor.cpp

@@ -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);