Rather than giving you my entire code, most of which is completely unrelated to the problem, I'll show you the important bits:
from tkinter import *
root = Tk()
button = Button(root, text="Text", width=30, height=5)
button.pack()
root.mainloop()
It all works great, with the exception of one thing - the height of the button isn't being adjusted. Even the width enlarges when I set it to 30, but the height remains the same - the standard height of a button with size 12 font. Does anyone know why this is, or how to troubleshoot it?
I'm running OSX 10.11 on a Mac, with python 3.4. Any help is appreciated!