diff options
author | Rindbee <idleman@yeah.net> | 2022-09-18 20:55:04 +0800 |
---|---|---|
committer | Rindbee <idleman@yeah.net> | 2022-09-18 20:55:13 +0800 |
commit | 65f97c671c0b9b1ff1bbe1fba72153752c04dc96 (patch) | |
tree | 9d728154d1642b365679349a030883fce2182909 | |
parent | e5594c26b14e75d8b75d1f697cf2bfbd6254a50c (diff) |
Make the inner TabBar in a TabContainer behave as if it were in a Container
-rw-r--r-- | scene/gui/tab_container.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/gui/tab_container.cpp b/scene/gui/tab_container.cpp index 1df698a108..ab4808d312 100644 --- a/scene/gui/tab_container.cpp +++ b/scene/gui/tab_container.cpp @@ -519,12 +519,12 @@ void TabContainer::_refresh_tab_names() { } void TabContainer::add_child_notify(Node *p_child) { + Container::add_child_notify(p_child); + if (p_child == tab_bar) { return; } - Container::add_child_notify(p_child); - Control *c = Object::cast_to<Control>(p_child); if (!c || c->is_set_as_top_level()) { return; |