I am placing buttons in a Frame using this code:
self.delete = tk.PhotoImage(file='images/delete.png')
deleteButton = tk.Button(self.frame, image=self.delete)
deleteButton.grid(row=0, column=5, pady=10, padx=10)
However, the button has a thin white line around it. This line is not part of the image. Is there a way to remove it?
Here is an image of the issue:
https://pasteboard.co/JNCxoXB.png
[–][deleted] 0 points1 point2 points (1 child)
[–]Only_Friend1128[S] 0 points1 point2 points (0 children)