Merge pull request #79494 from timothyqiu/no-longer

Update OptionButton min size when disabling Fit to Longest Item
This commit is contained in:
Yuri Sizov 2023-07-17 19:12:03 +02:00 committed by GitHub
commit 5954c58ee1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -445,13 +445,11 @@ void OptionButton::_select_int(int p_which) {
void OptionButton::_refresh_size_cache() {
cache_refresh_pending = false;
if (!fit_to_longest_item) {
return;
}
_cached_size = Vector2();
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)));
if (fit_to_longest_item) {
_cached_size = Vector2();
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)));
}
}
update_minimum_size();
}