ui/gtk/list.c

changeset 680
a4795b40e679
parent 669
5b930e8c3a87
child 683
ba226c243f3f
--- a/ui/gtk/list.c	Mon Jul 28 21:23:49 2025 +0200
+++ b/ui/gtk/list.c	Mon Jul 28 21:28:43 2025 +0200
@@ -921,7 +921,7 @@
     SCROLLEDWINDOW_SET_CHILD(scroll_area, view);
     
     UI_APPLY_LAYOUT2(current, args);
-    current->container->add(current->container, scroll_area, FALSE);
+    current->container->add(current->container, scroll_area);
     
     // ct->current should point to view, not scroll_area, to make it possible
     // to add a context menu
@@ -1098,7 +1098,7 @@
     }
     
     UI_APPLY_LAYOUT2(current, args);
-    current->container->add(current->container, scroll_area, FALSE);
+    current->container->add(current->container, scroll_area);
     
     // ct->current should point to view, not scroll_area, to make it possible
     // to add a context menu
@@ -1166,7 +1166,7 @@
     ui_set_name_and_style(combobox, args->name, args->style_class);
     ui_set_widget_groups(obj->ctx, combobox, args->groups);
     UI_APPLY_LAYOUT2(current, args);
-    current->container->add(current->container, combobox, FALSE);
+    current->container->add(current->container, combobox);
     current->container->current = combobox;
     return combobox;
 }

mercurial