mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-24 14:36:13 +01:00
Fix the cmp implementation for variant values
This was causing g_param_value_defaults to return 1 for GVariant values even when the value is clearly different from the default. This was showing up as gtk-builder-tool stripping non-default values for GtkActionable::action-target from ui files.
This commit is contained in:
parent
2d67f91e26
commit
566e64a660
@ -1155,7 +1155,7 @@ param_variant_values_cmp (GParamSpec *pspec,
|
||||
GVariant *v1 = value1->data[0].v_pointer;
|
||||
GVariant *v2 = value2->data[0].v_pointer;
|
||||
|
||||
return v1 < v2 ? -1 : v2 > v1;
|
||||
return v1 < v2 ? -1 : v1 > v2;
|
||||
}
|
||||
|
||||
/* --- type initialization --- */
|
||||
|
Loading…
Reference in New Issue
Block a user