diff options
author | Vasily_Makarov <danilka.pro@gmail.com> | 2011-06-10 13:40:53 +0400 |
---|---|---|
committer | Vasily_Makarov <danilka.pro@gmail.com> | 2011-06-10 13:40:53 +0400 |
commit | 7aa809718e77504d9ebccde25c3f06770f768384 (patch) | |
tree | 9e9ed85b326baa63077cd68312bbc6d61100257c /saedit/main.h | |
parent | f9fd4817f126805eff154c4ca98f9df8f9bfd703 (diff) | |
download | evol-tools-7aa809718e77504d9ebccde25c3f06770f768384.tar.gz evol-tools-7aa809718e77504d9ebccde25c3f06770f768384.tar.bz2 evol-tools-7aa809718e77504d9ebccde25c3f06770f768384.tar.xz evol-tools-7aa809718e77504d9ebccde25c3f06770f768384.zip |
saedit: Add forgotten clearing of ground pixbuf
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; } |