diff -r b174e721663e -r 6d0da97105d8 ui/common/object.c --- a/ui/common/object.c Sat Dec 27 22:47:56 2025 +0100 +++ b/ui/common/object.c Thu Jan 08 18:06:04 2026 +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; }