diff options
author | Florian Kothmeier <floriankothmeier@web.de> | 2023-06-27 16:22:58 +0200 |
---|---|---|
committer | Florian Kothmeier <floriankothmeier@web.de> | 2023-06-29 15:01:36 +0200 |
commit | c33748d954a279edd8c42a58f14efa88719f4111 (patch) | |
tree | 777764a1e9236a2b09132abe275cbe6a131ae4d1 /scene/gui/option_button.cpp | |
parent | 16dd4e5725a2576ba5765f9f15bccb519b83482c (diff) | |
download | redot-engine-c33748d954a279edd8c42a58f14efa88719f4111.tar.gz |
Fix invalid minimum size for translated messages in option button
Diffstat (limited to 'scene/gui/option_button.cpp')
-rw-r--r-- | scene/gui/option_button.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/option_button.cpp b/scene/gui/option_button.cpp index 451ac94109..71d64c8bff 100644 --- a/scene/gui/option_button.cpp +++ b/scene/gui/option_button.cpp @@ -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(); } |