diff options
author | DualMatrix <piet.goris@gmail.com> | 2018-10-08 12:43:44 +0200 |
---|---|---|
committer | DualMatrix <piet.goris@gmail.com> | 2018-10-08 12:43:44 +0200 |
commit | 87f8077a70da58f366d3d517daf2d814fdccae5f (patch) | |
tree | 98e7eb6d016419cf5680731c809be8d82bfd8191 | |
parent | cff89fc4e4f2ceb577b5f7a119d98cb22d41ea44 (diff) |
Fixed Animation Keyframe inspector not displaying after moving key.
Fixed Animation Keyframe inspector not displaying after moving key.
-rw-r--r-- | editor/animation_track_editor.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/animation_track_editor.cpp b/editor/animation_track_editor.cpp index 77be561477..3997469e95 100644 --- a/editor/animation_track_editor.cpp +++ b/editor/animation_track_editor.cpp @@ -4086,6 +4086,8 @@ void AnimationTrackEditor::_move_selection_commit() { for (int i = 0; i < track_edits.size(); i++) { track_edits[i]->update(); } + + _update_key_edit(); } void AnimationTrackEditor::_move_selection_cancel() { |