Merge pull request #26901 from KidRigger/anim_crash

Prevents a Null Reference in deleting Animations.
This commit is contained in:
Rémi Verschelde 2019-03-11 16:19:14 +01:00 committed by GitHub
commit 7b67c5857f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -3424,6 +3424,10 @@ void AnimationTrackEditor::_animation_update() {
bool same = true;
if (animation.is_null()) {
return;
}
if (track_edits.size() == animation->get_track_count()) {
//check tracks are the same