Sorry to ask such a simple question, but I seem to be unable to change the height of any buttons, whether I am using grid, pack or place. I am going through a book, and even when a copy the code in the book, the height won't change. The book is from 1998, so it's possible that that is the issue. Anyway...
Here is a short sample using place:
button .exit -text "Exit" -command exit
place .exit -relx 0.5 -rely 0.5 -anchor c -relwidth 0.8 -relheight 0.8
And it comes out with a button that stretches through most of the window in the x direction, but has normal height in the y direction. Same issue in pack and grid.
Thank you all!
Here is a short sample using place:
button .exit -text "Exit" -command exit
place .exit -relx 0.5 -rely 0.5 -anchor c -relwidth 0.8 -relheight 0.8
And it comes out with a button that stretches through most of the window in the x direction, but has normal height in the y direction. Same issue in pack and grid.
Thank you all!