tk.Label(self.info_frame, text = 'Paths:', font = 'bold').grid(column = 0, row = 0)
self.info_icon = tk.PhotoImage(file = r'info.png')
self.info_button = ttk.Button(self.info_frame, image = self.info_icon, command = lambda: messagebox.showinfo('messagebox', '''info'''))
self.info_button.image = self.info_icon
self.info_button.grid(column = 1, row = 0)
Code works well when when there is no theme . But it is not as I expect when applied
ttkbootstrap
theme
I did not find anything about this issue. Any way to fix? (Image is transparent)