diff options
| author | Duroxxigar <young9003@gmail.com> | 2020-10-02 17:03:52 -0400 |
|---|---|---|
| committer | Duroxxigar <young9003@gmail.com> | 2020-10-02 19:09:01 -0400 |
| commit | 4834e14493f14f1c1e219dff7fca66548fb74108 (patch) | |
| tree | 9ad1f5e2950813360c9538e459e42b82bd9f17be /scene/gui/tab_container.cpp | |
| parent | 9b1c9cef17ef06e5ae80309189464ca6afe7e551 (diff) | |
| download | redot-engine-4834e14493f14f1c1e219dff7fca66548fb74108.tar.gz | |
Updated getters and setters names for toplevel
Diffstat (limited to 'scene/gui/tab_container.cpp')
| -rw-r--r-- | scene/gui/tab_container.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/tab_container.cpp b/scene/gui/tab_container.cpp index 14a10ea627..a1f93094c4 100644 --- a/scene/gui/tab_container.cpp +++ b/scene/gui/tab_container.cpp @@ -517,7 +517,7 @@ Vector<Control *> TabContainer::_get_tabs() const { Vector<Control *> controls; for (int i = 0; i < get_child_count(); i++) { Control *control = Object::cast_to<Control>(get_child(i)); - if (!control || control->is_toplevel_control()) { + if (!control || control->is_top_level_control()) { continue; } |
