From af5087204d678558eef3d6540fb298136d61af2d Mon Sep 17 00:00:00 2001 From: Wei-Hsin Yeh Date: Wed, 5 Feb 2025 10:50:31 +0800 Subject: [PATCH] Remove duplicate comment Signed-off-by: Wei-Hsin Yeh --- src/widget.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/widget.c b/src/widget.c index b0456db..9226b36 100644 --- a/src/widget.c +++ b/src/widget.c @@ -207,7 +207,6 @@ void _twin_widget_bevel(twin_widget_t *widget, twin_fixed_t b, bool down) void twin_widget_children_paint(twin_box_t *box) { - /* Paint the widget children of the box. */ for (twin_widget_t *child = box->children; child; child = child->next) _twin_widget_queue_paint(child); }