# HG changeset patch
# User Olaf Wintermann <olaf.wintermann@gmail.com>
# Date 1738793409 -3600
# Node ID a39bd7d2410472ca2898d91c2af629ed2ad3297b
# Parent  3a825867cfe70f3853f36c6adb99b301eb38725e
remove container debug printf

diff -r 3a825867cfe7 -r a39bd7d24104 ui/gtk/container.c
--- a/ui/gtk/container.c	Wed Feb 05 23:04:04 2025 +0100
+++ b/ui/gtk/container.c	Wed Feb 05 23:10:09 2025 +0100
@@ -961,7 +961,6 @@
     UiObject* current = uic_current_obj(obj);
     
     GtkWidget *pane0 = create_paned(orientation);
-    printf("pane0: %p\n", pane0);
     
     UI_APPLY_LAYOUT1(current, args);
     current->container->add(current->container, pane0, TRUE);
@@ -1003,7 +1002,6 @@
     
     if(s->pos == 0) {
         gtk_paned_set_start_child(GTK_PANED(s->current_pane), widget);
-        printf("pane add: %p\n", s->current_pane);
         s->pos++;
         s->nchildren++;
     } else {