This seems like a silly question, but is it possible to change the height of a ttk button manually?
Something like button = tkinter.Button(frame, text='hi', width=20, height=20...)
works just fine for a tkinter button. Though I'd prefer to use a ttk button since it looks much better aesthetically.
button = ttk.Button(frame, text='hi', width=20, height=20...)
does not work, height doesn't seem to be a valid option. I've tried setting it with config or looking for elements in the style to change and haven't had any luck.
Is there a simple solution to this? I'm using Python 2.7, Windows for the record. Sorry, this seems like kind of a trivial questions but I've looked around without much luck.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…