--- a/ui/gtk/list.c Wed Jul 16 19:15:58 2025 +0200 +++ b/ui/gtk/list.c Thu Jul 17 22:01:52 2025 +0200 @@ -305,7 +305,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 @@ -381,7 +381,7 @@ // add widget to parent UI_APPLY_LAYOUT2(current, args); - current->container->add(current->container, view, FALSE); + current->container->add(current->container, view); return view; } @@ -485,7 +485,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 @@ -1835,7 +1835,7 @@ ui_set_name_and_style(listbox, args->name, args->style_class); ui_set_widget_groups(obj->ctx, listbox, args->groups); UI_APPLY_LAYOUT2(current, args); - current->container->add(current->container, scroll_area, TRUE); + current->container->add(current->container, scroll_area); UiListBox *uilistbox = malloc(sizeof(UiListBox)); uilistbox->obj = obj;