1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-20 14:45:44 +00:00

Merge pull request #22849 from DualMatrix/update_key_edit

Fixed Animation Keyframe inspector not displaying after moving key.
This commit is contained in:
Rémi Verschelde
2018-10-19 11:24:10 +02:00
committed by GitHub

View File

@@ -4086,6 +4086,8 @@ void AnimationTrackEditor::_move_selection_commit() {
for (int i = 0; i < track_edits.size(); i++) { for (int i = 0; i < track_edits.size(); i++) {
track_edits[i]->update(); track_edits[i]->update();
} }
_update_key_edit();
} }
void AnimationTrackEditor::_move_selection_cancel() { void AnimationTrackEditor::_move_selection_cancel() {