trasnform: Fix print statement

We were printing the wrong variable.
This commit is contained in:
Benjamin Otte 2019-03-02 04:35:44 +01:00
parent cf00c36c85
commit e737b42113

View File

@ -575,7 +575,7 @@ gsk_translate_transform_print (GskTransform *transform,
if (self->point.z != 0)
{
g_string_append (string, ", ");
string_append_double (string, self->point.y);
string_append_double (string, self->point.z);
}
g_string_append (string, ")");
}