diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2022-05-19 23:57:10 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2022-05-19 23:57:48 -0500 |
commit | a53b7f0a9d67efd6ca37fbcdc4ebaad0e1880c30 (patch) | |
tree | f9e1de4e9f56a4363aa4785ed0100de8f4e14e46 /editor/editor_about.cpp | |
parent | bdb9edcdd65e7257e74afdfc07288e1f5b178d2b (diff) | |
download | redot-engine-a53b7f0a9d67efd6ca37fbcdc4ebaad0e1880c30.tar.gz |
Tweaks to improve the Project Manager display at small sizes
Diffstat (limited to 'editor/editor_about.cpp')
-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 8e2aa3b35c..88ad2633c0 100644 --- a/editor/editor_about.cpp +++ b/editor/editor_about.cpp @@ -161,7 +161,7 @@ EditorAbout::EditorAbout() { TabContainer *tc = memnew(TabContainer); tc->set_tab_alignment(TabBar::ALIGNMENT_CENTER); - tc->set_custom_minimum_size(Size2(950, 400) * EDSCALE); + tc->set_custom_minimum_size(Size2(400, 200) * EDSCALE); tc->set_v_size_flags(Control::SIZE_EXPAND_FILL); vbc->add_child(tc); |