diff -r 330b415910bd -r 86d3a45dc928 ui/common/object.c --- a/ui/common/object.c Wed Dec 31 09:16:02 2025 +0100 +++ b/ui/common/object.c Wed Dec 31 10:06:15 2025 +0100 @@ -107,15 +107,11 @@ } UiObject* uic_object_new_toplevel(void) { - fflush(stdout); CxMempool *mp = cxMempoolCreateSimple(256); UiObject *obj = cxCalloc(mp->allocator, 1, sizeof(UiObjectPrivate)); - fflush(stdout); obj->ctx = uic_context(obj, mp); obj->ctx->parent = ui_global_context(); - fflush(stdout); uic_object_created(obj); - fflush(stdout); return obj; }