Re: [Tkinter-discuss] grid sticky problem

2006-07-03 Thread Jeff Epler
You need to give some rows or columns nonzero weight. master.grid_rowconfigure(rownum, weight=1) master.grid.columconfigure(colnum, weight=1) Jeff ___ Tkinter-discuss mailing list Tkinter-discuss@python.org http://mail.python.org/mailman/listinfo/tkinte

[Tkinter-discuss] grid sticky problem

2006-07-03 Thread Olivier Feys
I'm trying to add frames in a master frame with the grid manager, and it seems that the option 'sticky' doesn't work as it should When I change the size of the master frame, the subframes don't want to be resized like expand =1 , fill = 'both' for pack layout manager Thanks for help import Tki