GNOME Bugzilla – Bug 108305
Missing notification for GtkFrame::label
Last modified: 2004-12-22 21:47:04 UTC
Looks to me like: gtk_frame_set_label_widget() doesnt't queue a notification for the ::label property, but does change it. (See gtk_frame_get_label())
Created attachment 16377 [details] [review] patch to fix
Methods which change multiple properties should sent the notifications in one batch by freezing/thawing notifications around the g_object_notify calls, see g_object_freeze_notify().
Created attachment 16479 [details] [review] oops, forgot about freeze/thaw notify, good call ;)
Wed May 14 16:40:09 2003 Owen Taylor <otaylor@redhat.com> * gtk/gtkframe.c (gtk_frame_set_label_widget): Patch from Charles Schmidt to add missing notify (#108305)