diff options
author | Benjamin Otte <otte@redhat.com> | 2012-09-19 22:39:47 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-09-20 02:45:41 +0200 |
commit | a239f2e8b028b714cd269c10c70e19683390b68f (patch) | |
tree | c8d969464863b7522e2c9bfe000232c269a5da5f /gtk | |
parent | 502a2bf62546417fb13fd4847fbae13ee62fe031 (diff) | |
download | gtk+-a239f2e8b028b714cd269c10c70e19683390b68f.tar.gz |
blur: Do the same thing for rows and cols
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/gtkcairoblur.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkcairoblur.c b/gtk/gtkcairoblur.c index b711f2b2ae..3f944e2429 100644 --- a/gtk/gtkcairoblur.c +++ b/gtk/gtkcairoblur.c @@ -133,7 +133,7 @@ _blurcol (guchar* pixels, zB = *((guchar*) ptr + 2) << zprec; zA = *((guchar*) ptr + 3) << zprec; - for (index = 1; index < height - 1; index++) + for (index = 0; index < height; index++) _blurinner (&ptr[index * rowstride], &zR, &zG, |