diff options
author | kleonc <9283098+kleonc@users.noreply.github.com> | 2024-08-04 11:59:37 +0200 |
---|---|---|
committer | kleonc <9283098+kleonc@users.noreply.github.com> | 2024-08-04 11:59:37 +0200 |
commit | d1740e6cbf5f81ee1c3ec16256870856a1ca284b (patch) | |
tree | 399c17729ef307bdd4195f5dff67f559de578183 /scene/gui/tab_bar.cpp | |
parent | 3978628c6cc1227250fc6ed45c8d854d24c30c30 (diff) | |
download | redot-engine-d1740e6cbf5f81ee1c3ec16256870856a1ca284b.tar.gz |
Clear TabBar tab close button's rect after it's hidden
Diffstat (limited to 'scene/gui/tab_bar.cpp')
-rw-r--r-- | scene/gui/tab_bar.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/gui/tab_bar.cpp b/scene/gui/tab_bar.cpp index 1ae18f5728..3e0d6adf42 100644 --- a/scene/gui/tab_bar.cpp +++ b/scene/gui/tab_bar.cpp @@ -620,6 +620,8 @@ void TabBar::_draw_tab(Ref<StyleBox> &p_tab_style, Color &p_font_color, int p_in } cb->draw(ci, Point2i(cb_rect.position.x + style->get_margin(SIDE_LEFT), cb_rect.position.y + style->get_margin(SIDE_TOP))); + } else { + tabs.write[p_index].cb_rect = Rect2(); } } |