gsk: Fix printing of identity transforms

These need to print as "none", otherwise
the parser does not accept them.
This commit is contained in:
Matthias Clasen 2019-06-03 16:19:57 +00:00
parent d93fb5a3fa
commit 4ed57449ba

View File

@ -173,7 +173,7 @@ static void
gsk_identity_transform_print (GskTransform *transform,
GString *string)
{
g_string_append (string, "identity");
g_string_append (string, "none");
}
static GskTransform *