Remove debug render

This commit is contained in:
2023-12-28 09:41:50 +01:00
parent 3019e0ee3b
commit 80fb29601f

View File

@@ -460,7 +460,7 @@ static void renderNode(BzUI *ui, BzUINode *node) {
drawRect.x, drawRect.y
}, style.fontSize, style.fontSpacing, color);
}
if (node->flags & BZ_UI_DRAW_DEBUG || true) {
if (node->flags & BZ_UI_DRAW_DEBUG) {
DrawRectangleLines(rect.x, rect.y, rect.width, rect.height, RED);
}