ui/gtk/display.c

changeset 669
5b930e8c3a87
parent 594
fc854e0ab924
child 682
326e7a5122fa
--- a/ui/gtk/display.c	Wed Jul 16 19:15:58 2025 +0200
+++ b/ui/gtk/display.c	Thu Jul 17 22:01:52 2025 +0200
@@ -114,7 +114,7 @@
     }
     
     UI_APPLY_LAYOUT2(current, args);
-    current->container->add(current->container, widget, FALSE);
+    current->container->add(current->container, widget);
     
     return widget;
 }
@@ -150,7 +150,7 @@
 UIWIDGET ui_space_deprecated(UiObject *obj) {
     GtkWidget *widget = gtk_label_new("");
     UiContainer *ct = uic_get_current_container(obj);
-    ct->add(ct, widget, TRUE);
+    ct->add(ct, widget);
     
     return widget;
 }
@@ -162,7 +162,7 @@
     GtkWidget *widget = gtk_hseparator_new();
 #endif
     UiContainer *ct = uic_get_current_container(obj);
-    ct->add(ct, widget, FALSE);
+    ct->add(ct, widget);
     
     return widget;
 }
@@ -201,7 +201,7 @@
     }
     
     UI_APPLY_LAYOUT2(current, args);
-    current->container->add(current->container, progressbar, FALSE);
+    current->container->add(current->container, progressbar);
     
     return progressbar;
 }
@@ -243,7 +243,7 @@
     }
     
     UI_APPLY_LAYOUT2(current, args);
-    current->container->add(current->container, spinner, FALSE);
+    current->container->add(current->container, spinner);
     
     return spinner;
 }

mercurial