From fa12ab8f027fa8706f3588ac6616d8ec87989529 Mon Sep 17 00:00:00 2001 From: eska Date: Fri, 20 Nov 2015 01:12:29 +0100 Subject: Fix help display --- tools/editor/editor_help.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/editor/editor_help.cpp b/tools/editor/editor_help.cpp index 1bc09c5102..321ac76240 100644 --- a/tools/editor/editor_help.cpp +++ b/tools/editor/editor_help.cpp @@ -1428,7 +1428,8 @@ EditorHelp::EditorHelp() { { Panel *pc = memnew( Panel ); Ref style( memnew( StyleBoxFlat ) ); - style->set_bg_color( EditorSettings::get_singleton()->get("text_editor/background_color") ); + style->set_bg_color( EditorSettings::get_singleton()->get("text_editor/background_color") ); + pc->set_v_size_flags(SIZE_EXPAND_FILL); pc->add_style_override("panel", style); //get_stylebox("normal","TextEdit")); vbc->add_child(pc); class_desc = memnew( RichTextLabel ); -- cgit v1.2.3