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\',
Just an example, as @Bryan said, "For example, you can pack the button into a frame", I did it like this:
import Tkinter as tk
import ttk
class MyButton(ttk.Frame):
def __init__(self, parent, height=None, width=None, text="", command=None, style=None):
ttk.Frame.__init__(self, parent, height=height, width=width, style="MyButton.TFrame")
self.pack_propagate(0)
self._btn = ttk.Button(self, text=text, command=command, style=style)
self._btn.pack(fill=tk.BOTH, expand=1)