Fix encoding symbolic pixbufs

This was broken in 1a931da046.
This commit is contained in:
Matthias Clasen 2020-01-14 14:12:33 -05:00
parent a7d72cf69b
commit d03f38470e

View File

@ -422,8 +422,8 @@ gtk_make_symbolic_pixbuf_from_data (const char *file_data,
GError **error)
{
const char *r_string = "rgb(1,0,0)";
const char *g_string = "rgb(1,1,0)";
const char *r_string = "rgb(255,0,0)";
const char *g_string = "rgb(0,255,0)";
GdkPixbuf *loaded;
GdkPixbuf *pixbuf = NULL;
int plane;