# HG changeset patch # User Olaf Wintermann <olaf.wintermann@gmail.com> # Date 1743922227 -7200 # Node ID 131059d4167190e8ce73391935216a5f2370b67d # Parent 0e543e1d060e7efe4be5412381201cf20e207498 make sure item list widgets are shown (GTK) diff -r 0e543e1d060e -r 131059d41671 ui/gtk/container.c --- a/ui/gtk/container.c Sat Apr 05 11:21:02 2025 +0200 +++ b/ui/gtk/container.c Sun Apr 06 08:50:27 2025 +0200 @@ -1175,6 +1175,10 @@ elm = list->next(list); index++; } + +#if GTK_MAJOR_VERSION < 4 + gtk_widget_show_all(ct->widget); +#endif } static void destroy_itemlist_container(GtkWidget *w, UiGtkItemListContainer *container) {