I have been messing around with tkinter in the newest version 3.10.4 and have noticed that when you use a special font on a button that it loses the rounding. How do I use a special font while keeping it round?
Code:
from tkinter import *
window = Tk()
Button(window, text="Example", font=("Courier New bold", 15)).pack()
window.mainloop()
Image:
