Fix stale tab names in TabContainer

This commit is contained in:
Yuri Sizov 2021-03-14 22:54:46 +03:00
parent 31bf926eb4
commit 0c41411fe8
1 changed files with 1 additions and 0 deletions

View File

@ -1023,6 +1023,7 @@ void TabContainer::set_tab_title(int p_tab, const String &p_title) {
Control *child = _get_tab(p_tab);
ERR_FAIL_COND(!child);
child->set_meta("_tab_name", p_title);
_refresh_texts();
update();
}