Re: [Tutor] Tkinter, Frame and Canvas question.

2006-02-24 Thread Michael Lange
On Thu, 23 Feb 2006 11:26:44 -0600 Hugo González Monteverde <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm running into trouble displaying some Tkinter Canvases, they keep a > border between themselves and there's no way I can have them display > without a grey gap between them. > > I've narrowe

Re: [Tutor] Tkinter, Frame and Canvas question.

2006-02-23 Thread Hugo González Monteverde
> > Alas, there is some strange anomaly: it only does so (i. e. doesn't > display that gray bar between the canvases) when run from IDLE or > by double-clicking the renamed file test.pyw or run from the > command window with the command: python test.py. > Double-clicking test.py performs

Re: [Tutor] Tkinter, Frame and Canvas question.

2006-02-23 Thread Gregor Lingl
Hi Hugo, some experiments showed, that the following code - using borderwidth=-2 - works as you desired, at least on my windows machine: import Tkinter from Tkconstants import * class App(Tkinter.Frame): def __init__(self, master=None): Tkinter.Frame.__init__(self, master) self.pa

[Tutor] Tkinter, Frame and Canvas question.

2006-02-23 Thread Hugo González Monteverde
Hi all, I'm running into trouble displaying some Tkinter Canvases, they keep a border between themselves and there's no way I can have them display without a grey gap between them. I've narrowed the problem to the following example. I've tried all kind of padding and border parameter to the Fr