Merge pull request #47008 from pycbouh/tab-container-stale-texts
Fix stale tab names in TabContainer
This commit is contained in:
commit
e726bf95e4
|
@ -1023,6 +1023,7 @@ void TabContainer::set_tab_title(int p_tab, const String &p_title) {
|
||||||
Control *child = _get_tab(p_tab);
|
Control *child = _get_tab(p_tab);
|
||||||
ERR_FAIL_COND(!child);
|
ERR_FAIL_COND(!child);
|
||||||
child->set_meta("_tab_name", p_title);
|
child->set_meta("_tab_name", p_title);
|
||||||
|
_refresh_texts();
|
||||||
update();
|
update();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue