Re: Button placement

2021-03-09 Thread Bischoop
On 2021-03-09, Terry Reedy wrote: > > Say more clearly what you want/expect and what you are getting and why > you are unhappy. > It solved Terry, I wanted center the button on top, had only 3 columns (0,1,2) and was unaware that I could use "columnspan=3" as it ends on 2, I was using columnspan

Re: Button placement

2021-03-09 Thread Bischoop
On 2021-03-09, Richard Damon wrote: > > One thing to remember is that span is sort of like range, range(3) is > [0, 1, 2] > Right, ends on 2. Thanks again, that ended mine frustration lol. -- Thanks -- https://mail.python.org/mailman/listinfo/python-list

Re: Button placement

2021-03-09 Thread Richard Damon
On 3/9/21 6:24 AM, Bischoop wrote: > On 2021-03-09, Peter Otten <__pete...@web.de> wrote: >> On 09/03/2021 03:08, Bischoop wrote: >>> I try for a while place the top button in a a middle of column=0 with >>> span to column2 below so the button being centered to those, >> I'm not sure what you mean

Re: Button placement

2021-03-09 Thread Bischoop
On 2021-03-09, Peter Otten <__pete...@web.de> wrote: > On 09/03/2021 03:08, Bischoop wrote: >> >> I try for a while place the top button in a a middle of column=0 with >> span to column2 below so the button being centered to those, > > I'm not sure what you mean, do you perhaps need columnspan=3?

Re: Button placement

2021-03-09 Thread Terry Reedy
On 3/8/2021 9:08 PM, Bischoop wrote: I try for a while place the top button in a a middle of column=0 with span to column2 below so the button being centered to those, tried with canvas as well but with no success. Is someone with Tkinter experience able to advice what I could do? Say more cle

Re: Button placement

2021-03-09 Thread Peter Otten
On 09/03/2021 03:08, Bischoop wrote: I try for a while place the top button in a a middle of column=0 with span to column2 below so the button being centered to those, I'm not sure what you mean, do you perhaps need columnspan=3? tried with canvas as well but with no success. Is someone wit