diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-10-19 11:24:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-19 11:24:10 +0200 |
commit | e1f4e60a4264ff1cee1b5e27a227c29e772e302c (patch) | |
tree | 1aff56124c667a7e5846a4437c4f2a6c21e898ca | |
parent | cb30b60de69e526633d4c743ba84f46a3efbce3a (diff) | |
parent | 87f8077a70da58f366d3d517daf2d814fdccae5f (diff) |
Merge pull request #22849 from DualMatrix/update_key_edit
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() { |