Victor Reijs wrote: > This indeed work nicely, but I have a question related to the python > code that implements this. If I look in the inititialization of > ImageWin.py, do you think the statement on line 211 is correct? > Window.__init__(self, title, width=image.size[0], > height=image.size[0]) > > Or is it done on purpose that height is the same as width?
it's a stupid bug. remind me to always use rectangular images when testing code... > Why not: > Window.__init__(self, title, width=image.size[0], > height=image.size[1]) that makes a lot more sense. </F> _______________________________________________ Image-SIG maillist - [email protected] http://mail.python.org/mailman/listinfo/image-sig
