From 0ca7f6ed8ad626ca0d73340ff49488b8d0ac7ff7 Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Sun, 28 Dec 2025 17:41:11 +0900 Subject: [PATCH] dispatch children_update --- src/core.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core.c b/src/core.c index cde8b0d..bd46f9f 100644 --- a/src/core.c +++ b/src/core.c @@ -261,6 +261,8 @@ void MwDestroyWidget(MwWidget handle) { if(i == arrlen(handle->parent->destroy_queue)) { arrput(handle->parent->destroy_queue, handle); } + + MwDispatch(handle->parent, children_update); } destroy_children(handle); handle->destroyed = 1;