Tkinter Column Getting Stretched When Using .grid Geometry
In my program, I'm trying to have a big text box sitting below some checkboxes, labels, and spinboxes. However, the size of the textbox is causing the column it is in to expand to
Solution 1:
Use columnspan
to make the widget span multiple columns.
benchmarkPreview.grid(row=7, column=0, columnspan=4)
Post a Comment for "Tkinter Column Getting Stretched When Using .grid Geometry"