mirror of https://github.com/GNOME/gimp.git
app: fix parsing of GUM cross-property references
This commit is contained in:
parent
ae801871e5
commit
8139836d5d
|
@ -926,6 +926,15 @@ gimp_prop_eval_parse_reference (GObject *config,
|
||||||
g_free (property_name);
|
g_free (property_name);
|
||||||
|
|
||||||
*ref_key = g_strdup (*t);
|
*ref_key = g_strdup (*t);
|
||||||
|
|
||||||
|
gimp_prop_eval_read_token (expr, t, error);
|
||||||
|
|
||||||
|
if (*error)
|
||||||
|
{
|
||||||
|
g_free (*ref_key);
|
||||||
|
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
Loading…
Reference in New Issue