From 87f8077a70da58f366d3d517daf2d814fdccae5f Mon Sep 17 00:00:00 2001 From: DualMatrix Date: Mon, 8 Oct 2018 12:43:44 +0200 Subject: Fixed Animation Keyframe inspector not displaying after moving key. Fixed Animation Keyframe inspector not displaying after moving key. --- editor/animation_track_editor.cpp | 2 ++ 1 file changed, 2 insertions(+) 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() { -- cgit v1.2.3