diff options
Diffstat (limited to 'saedit/main.h')
-rw-r--r-- | saedit/main.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/saedit/main.h b/saedit/main.h index 345cc23..53314f0 100644 --- a/saedit/main.h +++ b/saedit/main.h @@ -47,6 +47,7 @@ typedef struct { static imageset_info *imageset_info_new() { imageset_info *res = g_new0(imageset_info, 1); res->ground = gdk_pixbuf_new(GDK_COLORSPACE_RGB, TRUE, 8, GRID_SIZE * 3, GRID_SIZE * 3); + gdk_pixbuf_fill(res->ground, 0x00000000); return res; } |