GtkEntry: Explicitly notify for populate-all

This commit is contained in:
Matthias Clasen 2014-06-08 11:33:29 -04:00
parent 056acf92ec
commit ec6056a574

View File

@ -2345,7 +2345,11 @@ gtk_entry_set_property (GObject *object,
break;
case PROP_POPULATE_ALL:
entry->priv->populate_all = g_value_get_boolean (value);
if (entry->priv->populate_all != g_value_get_boolean (value))
{
entry->priv->populate_all = g_value_get_boolean (value);
g_object_notify_by_pspec (object, pspec);
}
break;
case PROP_TABS: