summaryrefslogtreecommitdiffstats
path: root/scene/gui/tab_bar.cpp
diff options
context:
space:
mode:
authorWierdox <104049283+Wierdox@users.noreply.github.com>2023-10-13 15:17:51 -0700
committerWierdox <104049283+Wierdox@users.noreply.github.com>2023-10-13 16:34:05 -0700
commit7b33ad354a1884c027487892f2e44e8cc6862076 (patch)
tree1249ebae98444197f942673732b9ccb03fd43490 /scene/gui/tab_bar.cpp
parenta574c0296b38d5f786f249b12e6251e562c528cc (diff)
downloadredot-engine-7b33ad354a1884c027487892f2e44e8cc6862076.tar.gz
Fix phantom tab right button.
Diffstat (limited to 'scene/gui/tab_bar.cpp')
-rw-r--r--scene/gui/tab_bar.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/gui/tab_bar.cpp b/scene/gui/tab_bar.cpp
index 7e9b566438..8af73deefb 100644
--- a/scene/gui/tab_bar.cpp
+++ b/scene/gui/tab_bar.cpp
@@ -567,6 +567,8 @@ void TabBar::_draw_tab(Ref<StyleBox> &p_tab_style, Color &p_font_color, int p_in
rb->draw(ci, Point2i(rb_rect.position.x + style->get_margin(SIDE_LEFT), rb_rect.position.y + style->get_margin(SIDE_TOP)));
p_x = rtl ? rb_rect.position.x : rb_rect.position.x + rb_rect.size.width;
+ } else {
+ tabs.write[p_index].rb_rect = Rect2();
}
// Draw and calculate rect of the close button.