diff options
| author | Franklin Sobrinho | 2016-03-15 15:15:50 -0300 |
|---|---|---|
| committer | Franklin Sobrinho | 2016-03-15 15:15:50 -0300 |
| commit | 4a0f835ece40db45f1705761cd492bd34e8c4630 (patch) | |
| tree | d47ff360567b5e4d15b3b11107549dfe4ee5ce0f /tools/editor/plugins/animation_player_editor_plugin.cpp | |
| parent | be4d58e1203ae35dab97b14f08098f50998d4201 (diff) | |
| download | godot-4a0f835ece40db45f1705761cd492bd34e8c4630.tar.gz godot-4a0f835ece40db45f1705761cd492bd34e8c4630.tar.zst godot-4a0f835ece40db45f1705761cd492bd34e8c4630.zip | |
Fix editors panels, of the bottom panel, not resizing in some cases
Diffstat (limited to 'tools/editor/plugins/animation_player_editor_plugin.cpp')
| -rw-r--r-- | tools/editor/plugins/animation_player_editor_plugin.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/editor/plugins/animation_player_editor_plugin.cpp b/tools/editor/plugins/animation_player_editor_plugin.cpp index 0b06aab44..67f730f30 100644 --- a/tools/editor/plugins/animation_player_editor_plugin.cpp +++ b/tools/editor/plugins/animation_player_editor_plugin.cpp @@ -1500,7 +1500,8 @@ bool AnimationPlayerEditorPlugin::handles(Object *p_object) const { void AnimationPlayerEditorPlugin::make_visible(bool p_visible) { if (p_visible) { - anim_editor->show(); + + editor->make_bottom_panel_item_visible(anim_editor); anim_editor->set_process(true); anim_editor->ensure_visibility(); // editor->animation_panel_make_visible(true); |
