瀏覽代碼

Clear TabBar tab close button's rect after it's hidden

kleonc 1 年之前
父節點
當前提交
d1740e6cbf
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      scene/gui/tab_bar.cpp

+ 2 - 0
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();
 	}
 }