diff options
author | Michael Alexsander <michaelalexsander@protonmail.com> | 2021-09-23 21:20:15 -0300 |
---|---|---|
committer | Michael Alexsander <michaelalexsander@protonmail.com> | 2021-09-24 10:44:04 -0300 |
commit | edf3d225cee1774e7d788405ca4aff52f3f98101 (patch) | |
tree | 1b6a594d3590368e3b696400a6d9154fb6819e4d | |
parent | 01f692c173b9926ae764a4a4c9a54c266a21272b (diff) |
Fix tab renaming not updating its size in `Tabs`
-rw-r--r-- | scene/gui/tabs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/tabs.cpp b/scene/gui/tabs.cpp index 3ca2d1c1e9..deb5c364cb 100644 --- a/scene/gui/tabs.cpp +++ b/scene/gui/tabs.cpp @@ -241,6 +241,7 @@ void Tabs::_shape(int p_tab) { tabs.write[p_tab].xl_text = atr(tabs[p_tab].text); tabs.write[p_tab].text_buf->clear(); + tabs.write[p_tab].text_buf->set_width(-1); if (tabs[p_tab].text_direction == Control::TEXT_DIRECTION_INHERITED) { tabs.write[p_tab].text_buf->set_direction(is_layout_rtl() ? TextServer::DIRECTION_RTL : TextServer::DIRECTION_LTR); } else { @@ -529,7 +530,6 @@ bool Tabs::get_offset_buttons_visible() const { void Tabs::set_tab_title(int p_tab, const String &p_title) { ERR_FAIL_INDEX(p_tab, tabs.size()); tabs.write[p_tab].text = p_title; - tabs.write[p_tab].xl_text = atr(p_title); _shape(p_tab); update(); minimum_size_changed(); |