From 059b287a09fe583c8624a170272dbe4d3d0e8716 Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Thu, 7 May 2026 19:45:14 +0900 Subject: [PATCH] fix separator --- src/widget/separator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widget/separator.c b/src/widget/separator.c index d49873e..4e70ccc 100644 --- a/src/widget/separator.c +++ b/src/widget/separator.c @@ -25,7 +25,7 @@ static void draw(MwWidget handle) { r.y = (r.height - 2) / 2; r.height = 2; } - MwDrawFrameEx(handle, &r, base, 1, MwDEFAULT, 0, 0); + MwDrawFrameEx(handle, &r, base, 1, 1, 0, 0); MwLLFreeColor(base); }