installer icon is now linux compatible

This commit is contained in:
Faraphel 2022-08-30 13:53:30 +02:00
parent ab145250c6
commit 8e800d1cbe
2 changed files with 3 additions and 1 deletions

BIN
assets/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View file

@ -52,7 +52,9 @@ class Window(tkinter.Tk):
self.title(_("INSTALLER_TITLE"))
self.resizable(False, False)
self.iconbitmap("./assets/icon.ico")
self.icon = tkinter.PhotoImage(file="./assets/icon.png")
self.iconphoto(True, self.icon)
# menu bar
self.menu = Menu(self)