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
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