summaryrefslogtreecommitdiff
path: root/scene
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-12-10 16:20:13 +0100
committerGitHub <noreply@github.com>2022-12-10 16:20:13 +0100
commite9c7140cfa6fa6e839730d4f43377dc7237b8ba4 (patch)
tree3a160335d7292b2bf62f95648f261eb25e63928c /scene
parent1ac7e5a3343ef9f4ecc7c494f7212b7c718520c8 (diff)
parentc87e9f0b7c4fdc52a47a2ff4972195e04e8fb400 (diff)
Merge pull request #69853 from TokageItLab/fix-unmerged-history-anim-editor
Fix unmerged history in AnimationTrackEditor
Diffstat (limited to 'scene')
-rw-r--r--scene/animation/animation_player.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/animation/animation_player.cpp b/scene/animation/animation_player.cpp
index 4800a83255..eca73fbd10 100644
--- a/scene/animation/animation_player.cpp
+++ b/scene/animation/animation_player.cpp
@@ -2071,7 +2071,7 @@ Ref<AnimatedValuesBackup> AnimationPlayer::apply_reset(bool p_user_initiated) {
old_values->restore();
Ref<EditorUndoRedoManager> &ur = EditorNode::get_undo_redo();
- ur->create_action(TTR("Anim Apply Reset"));
+ ur->create_action(TTR("Animation Apply Reset"));
ur->add_do_method(new_values.ptr(), "restore");
ur->add_undo_method(old_values.ptr(), "restore");
ur->commit_action();