make sure item list widgets are shown (GTK)

2 days ago

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Sun, 06 Apr 2025 08:50:27 +0200 (2 days ago)
changeset 552
131059d41671
parent 551
0e543e1d060e
child 553
90e38db0c755

make sure item list widgets are shown (GTK)

ui/gtk/container.c file | annotate | diff | comparison | revisions
--- 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) {

mercurial