Fix errors about `UndoRedo` history mismatch when deleting bezier track
(cherry picked from commit 4db3e6e6cd
)
This commit is contained in:
parent
b05470efd0
commit
1ecf20c783
|
@ -1083,7 +1083,7 @@ void AnimationBezierTrackEdit::gui_input(const Ref<InputEvent> &p_event) {
|
||||||
if (I.key == REMOVE_ICON) {
|
if (I.key == REMOVE_ICON) {
|
||||||
if (!read_only) {
|
if (!read_only) {
|
||||||
EditorUndoRedoManager *undo_redo = EditorUndoRedoManager::get_singleton();
|
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_locked_tracks_after", track);
|
||||||
undo_redo->add_do_method(this, "_update_hidden_tracks_after", track);
|
undo_redo->add_do_method(this, "_update_hidden_tracks_after", track);
|
||||||
|
|
Loading…
Reference in New Issue