I need to make a button in tkinter, but for some reason the button has rounded corners. Is there any way to make the button just a simple rectangle with a black border?
Here is my code currently:
button = Button(window=frame, text="Source and Output", width=17, command=info, bg=tkcolour_from_rgb((255, 255, 255)), bd=10, highlightthickness=4, highlightbackground=tkcolour_from_rgb((0, 0, 0)), borderwidth=4, relief="solid")
button.grid(row=0, column=0, padx=(15, 0), pady=15)
the function tkcolour_from_rgb just converts an rgb tuple to a colour for tkinter.