Fix invalid minimum size for translated messages in option button

This commit is contained in:
Florian Kothmeier
2023-06-27 16:22:58 +02:00
parent 16dd4e5725
commit c33748d954
3 changed files with 7 additions and 1 deletions

View File

@ -451,7 +451,7 @@ void OptionButton::_refresh_size_cache() {
_cached_size = Vector2();
for (int i = 0; i < get_item_count(); i++) {
_cached_size = _cached_size.max(get_minimum_size_for_text_and_icon(get_item_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();
}