ui/common/object.c

changeset 118
6d0da97105d8
parent 117
b174e721663e
--- 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;
 }
 

mercurial