summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2018-10-19 11:24:10 +0200
committerGitHub <noreply@github.com>2018-10-19 11:24:10 +0200
commite1f4e60a4264ff1cee1b5e27a227c29e772e302c (patch)
tree1aff56124c667a7e5846a4437c4f2a6c21e898ca
parentcb30b60de69e526633d4c743ba84f46a3efbce3a (diff)
parent87f8077a70da58f366d3d517daf2d814fdccae5f (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.cpp2
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() {