Fix undo of editing animation length with spinner by adding flag
This commit is contained in:
parent
d3fc9d9e41
commit
5d2e7b9b1d
1 changed files with 1 additions and 1 deletions
|
@ -1253,7 +1253,7 @@ void AnimationTimelineEdit::_anim_length_changed(double p_new_len) {
|
|||
|
||||
editing = true;
|
||||
Ref<EditorUndoRedoManager> &undo_redo = EditorNode::get_undo_redo();
|
||||
undo_redo->create_action(TTR("Change Animation Length"));
|
||||
undo_redo->create_action(TTR("Change Animation Length"), UndoRedo::MERGE_ENDS);
|
||||
undo_redo->add_do_method(animation.ptr(), "set_length", p_new_len);
|
||||
undo_redo->add_undo_method(animation.ptr(), "set_length", animation->get_length());
|
||||
undo_redo->commit_action();
|
||||
|
|
Loading…
Reference in a new issue