Merge branch 'wip/corey/file-clipboard' into 'main'

gdkcontentserializer: Use newlines for file separators

Closes #5240

See merge request GNOME/gtk!5107
This commit is contained in:
Matthias Clasen 2022-10-10 21:13:28 +00:00
commit 8ba7840528

View File

@ -879,7 +879,7 @@ file_text_serializer (GdkContentSerializer *serializer)
g_string_append (str, path);
g_free (path);
if (l->next)
g_string_append (str, " ");
g_string_append (str, "\n");
}
path = g_string_free (str, FALSE);
}