Open
Description
Bug report
Bug description:
this is my code
from tkinter import Tk, Label, PhotoImage
class MyApplication:
def __init__(self, root):
self.root = root
self.img = PhotoImage(file="imgs/0.png")
self.label = Label(self.root, image=self.img)
self.label.pack()
root = Tk()
app = MyApplication(root)
root.mainloop()
The same code, in the windows environment, the display is normal, but on armbian, the display is black image.
When I resize the window, the images are displayed correctly again
armbian environment:
python3.10
tkinter 8.6
desktop xfce
please help me. thank you
CPython versions tested on:
3.10
Operating systems tested on:
Linux