From 6a566648d29f5298ac86e26100e22486a3f621a9 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 30 Mar 2023 14:12:54 -0400 Subject: [PATCH] listitem: Fix a notification problem We were notifying ::item when ::child is changed. Oops --- gtk/gtklistitem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtklistitem.c b/gtk/gtklistitem.c index 28614b62f8..f8a9e36036 100644 --- a/gtk/gtklistitem.c +++ b/gtk/gtklistitem.c @@ -323,7 +323,7 @@ gtk_list_item_set_child (GtkListItem *self, gtk_list_item_widget_add_child (self->owner, child); } - g_object_notify_by_pspec (G_OBJECT (self), properties[PROP_ITEM]); + g_object_notify_by_pspec (G_OBJECT (self), properties[PROP_CHILD]); } /** -- 2.30.2