diff options
| author | Poommetee Ketson | 2017-12-12 22:57:17 +0700 |
|---|---|---|
| committer | Poommetee Ketson | 2017-12-12 23:04:37 +0700 |
| commit | 24df9f3707767f94a8b7842a24013aa3709b1805 (patch) | |
| tree | 6afe7e0d6be6e1d886c2c40e929d9f50301f22f1 /editor/animation_editor.cpp | |
| parent | 55962ce28fec5f06016ed3f66f52e6e84b817dbe (diff) | |
| download | godot-24df9f3707767f94a8b7842a24013aa3709b1805.tar.gz godot-24df9f3707767f94a8b7842a24013aa3709b1805.tar.zst godot-24df9f3707767f94a8b7842a24013aa3709b1805.zip | |
Diffstat (limited to 'editor/animation_editor.cpp')
| -rw-r--r-- | editor/animation_editor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/animation_editor.cpp b/editor/animation_editor.cpp index c6757ba98..c6381864b 100644 --- a/editor/animation_editor.cpp +++ b/editor/animation_editor.cpp @@ -324,7 +324,7 @@ public: int existing = animation->track_find_key(track, new_time, true); setting = true; - undo_redo->create_action(TTR("Move Add Key"), UndoRedo::MERGE_ENDS); + undo_redo->create_action(TTR("Anim Change Keyframe Time"), UndoRedo::MERGE_ENDS); Variant val = animation->track_get_key_value(track, key); float trans = animation->track_get_key_transition(track, key); @@ -391,7 +391,7 @@ public: } setting = true; - undo_redo->create_action(TTR("Anim Change Value"), UndoRedo::MERGE_ENDS); + undo_redo->create_action(TTR("Anim Change Keyframe Value"), UndoRedo::MERGE_ENDS); Variant prev = animation->track_get_key_value(track, key); undo_redo->add_do_method(animation.ptr(), "track_set_key_value", track, key, value); undo_redo->add_undo_method(animation.ptr(), "track_set_key_value", track, key, prev); |
