From b01d07e0496397697c904db71d58f248c30d1123 Mon Sep 17 00:00:00 2001 From: PouleyKetchoupp Date: Wed, 4 Sep 2019 18:18:25 +0200 Subject: Fixed switching back to animation player editor with no animation to select Fixes #31959 --- editor/plugins/animation_player_editor_plugin.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/editor/plugins/animation_player_editor_plugin.cpp b/editor/plugins/animation_player_editor_plugin.cpp index 173079b6de..bc5d346780 100644 --- a/editor/plugins/animation_player_editor_plugin.cpp +++ b/editor/plugins/animation_player_editor_plugin.cpp @@ -690,8 +690,10 @@ void AnimationPlayerEditor::set_state(const Dictionary &p_state) { if (p_state.has("animation")) { String anim = p_state["animation"]; - _select_anim_by_name(anim); - _animation_edit(); + if (!anim.empty() && player->has_animation(anim)) { + _select_anim_by_name(anim); + _animation_edit(); + } } } } -- cgit v1.2.3