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\',
button = tkinter.Button(frame, text=\'hi\',
This worked for me:
my_button = ttk.Button(self, text="Hello World !") my_button.grid(row=1, column=1, ipady=10, ipadx=10)
where ipady and ipadx adds pixels inside the button unlike pady and padx which adds pixels outside of the button
ipady
ipadx
pady
padx