Fixes OptionButton min size

(cherry picked from commit ddc397d9ff)
This commit is contained in:
Haoyu Qiu 2020-01-27 14:52:04 +08:00 committed by Rémi Verschelde
parent 2af79844aa
commit 808a0bac33

View file

@ -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;