diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2020-01-27 14:52:04 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2020-01-27 14:52:04 +0800 |
commit | ddc397d9ff81294b73609e9e834a2c11bfe4b99e (patch) | |
tree | d26a8f536ecac51ad83e52b977cc27852610011b /scene/gui/option_button.cpp | |
parent | 5db45fbaf351883e37fdcdece854139b6b236d4b (diff) | |
download | redot-engine-ddc397d9ff81294b73609e9e834a2c11bfe4b99e.tar.gz |
Fixes OptionButton min size
Diffstat (limited to 'scene/gui/option_button.cpp')
-rw-r--r-- | scene/gui/option_button.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/scene/gui/option_button.cpp b/scene/gui/option_button.cpp index 8598a953b4..3f46afa8e8 100644 --- a/scene/gui/option_button.cpp +++ b/scene/gui/option_button.cpp @@ -36,7 +36,14 @@ Size2 OptionButton::get_minimum_size() const { Size2 minsize = Button::get_minimum_size(); if (has_icon("arrow")) { - minsize.width += Control::get_icon("arrow")->get_width() + get_constant("hseparation"); + const Size2 padding = get_stylebox("normal")->get_minimum_size(); + const Size2 arrow_size = Control::get_icon("arrow")->get_size(); + + Size2 content_size = minsize - padding; + content_size.width += arrow_size.width + get_constant("hseparation"); + content_size.height = MAX(content_size.height, arrow_size.height); + + minsize = content_size + padding; } return minsize; |