From 0550c41ab6aafe72ddbc5d2da7f10f7c7ea0f9f1 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Sat, 5 Oct 2019 17:18:25 +0200 Subject: [PATCH] Increase the size of the About dialog This makes third-party license texts display without any soft wrapping. The About dialog still fits in the editor when using the smallest window size permitted (1024x600). --- editor/editor_about.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/editor_about.cpp b/editor/editor_about.cpp index b2567249d8c..8a032927080 100644 --- a/editor/editor_about.cpp +++ b/editor/editor_about.cpp @@ -141,7 +141,7 @@ EditorAbout::EditorAbout() { hbc->add_child(about_text); TabContainer *tc = memnew(TabContainer); - tc->set_custom_minimum_size(Size2(630, 240) * EDSCALE); + tc->set_custom_minimum_size(Size2(950, 400) * EDSCALE); tc->set_v_size_flags(Control::SIZE_EXPAND_FILL); vbc->add_child(tc);