From d53e6b5a144c68ef34986408bc506c258c7c0c10 Mon Sep 17 00:00:00 2001 From: Jon Dowland Date: Sat, 23 Feb 2008 12:51:25 +0000 Subject: [PATCH] tweak a y-offset to demonstrate the bug --- tools/cleanroom/images.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cleanroom/images.py b/tools/cleanroom/images.py index 40d72d9d..a65de7c2 100644 --- a/tools/cleanroom/images.py +++ b/tools/cleanroom/images.py @@ -49,7 +49,7 @@ class ImagesExample: )) pb = basepatch.get_pixbuf() - for (x,y) in [(0,0), (51,0), (104,0)]: + for (x,y) in [(0,0), (51,0), (104,16)]: image = gtk.Image() image.set_from_pixbuf(baseimage.get_pixbuf().copy()) image.show()