GtkCssStyleChange: Only print values that really changed

This commit is contained in:
Timm Bäder 2017-10-12 11:46:25 +02:00
parent a6904ba2cc
commit 2c9bbb9a71

View File

@ -126,6 +126,10 @@ gtk_css_style_change_print (GtkCssStyleChange *change,
GtkCssValue *value;
const char *name;
if (_gtk_css_value_equal (gtk_css_style_get_value (change->old_style, i),
gtk_css_style_get_value (change->new_style, i)))
continue;
prop = _gtk_css_style_property_lookup_by_id (i);
name = _gtk_style_property_get_name (GTK_STYLE_PROPERTY (prop));