From b4df1ab241dfd76850174126ac434df8ec9837a3 Mon Sep 17 00:00:00 2001 From: nishi Date: Sun, 19 Apr 2026 19:19:26 -0500 Subject: [PATCH] Update src/core.c --- src/core.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core.c b/src/core.c index dddf25b..c334e9e 100644 --- a/src/core.c +++ b/src/core.c @@ -301,8 +301,7 @@ MwWidget MwVaCreateWidget(MwClass widget_class, const char* name, MwWidget paren MwWidget MwVaListCreateWidget(MwClass widget_class, const char* name, MwWidget parent, int x, int y, unsigned int width, unsigned int height, va_list va) { MwWidget h; - h = MwCreateWidget(widget_class, name, parent, x, y, width, height); - MwVaListApply(h, va); + h = MwCreateWidget_Internal(widget_class, name, parent, x, y, width, height, 1, va); return h; }