Update OptionButton min size when disabling Fit to Longest Item
(cherry picked from commit 5384c1a579
)
This commit is contained in:
parent
6ecf741b7a
commit
5e7a5cd2b1
@ -445,14 +445,12 @@ void OptionButton::_select_int(int p_which) {
|
|||||||
void OptionButton::_refresh_size_cache() {
|
void OptionButton::_refresh_size_cache() {
|
||||||
cache_refresh_pending = false;
|
cache_refresh_pending = false;
|
||||||
|
|
||||||
if (!fit_to_longest_item) {
|
if (fit_to_longest_item) {
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
_cached_size = Vector2();
|
_cached_size = Vector2();
|
||||||
for (int i = 0; i < get_item_count(); i++) {
|
for (int i = 0; i < get_item_count(); i++) {
|
||||||
_cached_size = _cached_size.max(get_minimum_size_for_text_and_icon(popup->get_item_xl_text(i), get_item_icon(i)));
|
_cached_size = _cached_size.max(get_minimum_size_for_text_and_icon(popup->get_item_xl_text(i), get_item_icon(i)));
|
||||||
}
|
}
|
||||||
|
}
|
||||||
update_minimum_size();
|
update_minimum_size();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user