Avoid excessive property notification for GtkStack::interpolate-size
make check checks this for writable properties, and fails now that we've made this property writable.
This commit is contained in:
@ -474,7 +474,7 @@ gtk_stack_class_init (GtkStackClass *klass)
|
|||||||
stack_props[PROP_INTERPOLATE_SIZE] =
|
stack_props[PROP_INTERPOLATE_SIZE] =
|
||||||
g_param_spec_boolean ("interpolate-size", P_("Interpolate size"), P_("Whether or not the size should smoothly change when changing between differently sized children"),
|
g_param_spec_boolean ("interpolate-size", P_("Interpolate size"), P_("Whether or not the size should smoothly change when changing between differently sized children"),
|
||||||
FALSE,
|
FALSE,
|
||||||
GTK_PARAM_READWRITE);
|
GTK_PARAM_READWRITE | G_PARAM_EXPLICIT_NOTIFY);
|
||||||
|
|
||||||
|
|
||||||
g_object_class_install_properties (object_class, LAST_PROP, stack_props);
|
g_object_class_install_properties (object_class, LAST_PROP, stack_props);
|
||||||
|
Reference in New Issue
Block a user