In article <[EMAIL PROTECTED]>,
 "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:

> There appears to be an asymmetric "border"
> around the inside of the canvas.

There was a thread on this last May (you can search for the thread 
titled "Unusable outer edge of Tkinter canvases?")

Fredrik Lundh suggested resetting the coordinate system via:

w.xview_moveto(0)
w.yview_moveto(0)

This seemed to help, but in the end it still seems that there's a narrow 
border inside the edges of a Canvas which can't be drawn to. And it 
seems to be different for OS X and Windows.

In the end I just made sure everything I draw is no closer than 5 pixels 
from the edge of the Canvas, and that seems to work on all the platforms 
I'm deploying on.

Dave Opstad
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to