From dac94c78e14f8e67657c36db5f44252ba0a352e2 Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Sat, 28 Mar 2026 02:39:30 +0900 Subject: [PATCH] huh --- examples/basic/periodic.c | 1 - src/core.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/basic/periodic.c b/examples/basic/periodic.c index 423fe3c..e7d69fc 100644 --- a/examples/basic/periodic.c +++ b/examples/basic/periodic.c @@ -156,7 +156,6 @@ int main() { window = MwVaCreateWidget(MwWindowClass, "window", NULL, MwDEFAULT, MwDEFAULT, 800, 800, MwNtitle, "Milsko Periodic Table", - MwNmodernLook, 0, NULL); menu = MwCreateWidget(MwMenuClass, "menu", window, 0, 0, 0, 0); diff --git a/src/core.c b/src/core.c index 4031267..e364a30 100644 --- a/src/core.c +++ b/src/core.c @@ -363,7 +363,7 @@ int MwStep(MwWidget handle) { handle->prop_event = 0; - if(handle->lowlevel != NULL && MwLLPending(handle->lowlevel)) + while(handle->lowlevel != NULL && MwLLPending(handle->lowlevel)) MwLLNextEvent(handle->lowlevel); handle->prop_event = 1;