diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-10-07 08:26:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-07 08:26:57 +0200 |
commit | c825f76decc6ad8f08164d33fa0e4c84ea1c8b9c (patch) | |
tree | 05be0289616cc7ad4152d08d1bd68d2d76fbb497 /editor | |
parent | 74c7866bbac1d1f014b684cf2d2cdf8640e44275 (diff) | |
parent | 0550c41ab6aafe72ddbc5d2da7f10f7c7ea0f9f1 (diff) |
Merge pull request #32567 from Calinou/increase-about-dialog-size
Increase the size of the About dialog
Diffstat (limited to 'editor')
-rw-r--r-- | editor/editor_about.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_about.cpp b/editor/editor_about.cpp index b2567249d8..8a03292708 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); |