diff options
author | Rindbee <idleman@yeah.net> | 2022-07-18 19:56:23 +0800 |
---|---|---|
committer | Rindbee <idleman@yeah.net> | 2022-07-18 20:06:21 +0800 |
commit | c47ac206207e4be5d4694d3e2796583069a79a64 (patch) | |
tree | c4b4d44d9477dd62cbec4dc92afe0e5f599609dd /scene/gui/tab_container.h | |
parent | ecc86afc00c6ace07bfc05ea6ebe8a971d40934b (diff) | |
download | redot-engine-c47ac206207e4be5d4694d3e2796583069a79a64.tar.gz |
Fix getting outdated tab controls
Diffstat (limited to 'scene/gui/tab_container.h')
-rw-r--r-- | scene/gui/tab_container.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/gui/tab_container.h b/scene/gui/tab_container.h index 9adaa0d844..60c8130939 100644 --- a/scene/gui/tab_container.h +++ b/scene/gui/tab_container.h @@ -46,6 +46,7 @@ class TabContainer : public Container { bool drag_to_rearrange_enabled = false; bool use_hidden_tabs_for_min_size = false; bool theme_changing = false; + Node *child_removing = nullptr; int _get_top_margin() const; Vector<Control *> _get_tab_controls() const; |