Skip to content
This repository was archived by the owner on Apr 3, 2023. It is now read-only.

Commit 58bd091

Browse files
author
ZKWolf
committed
removed in_app.ico and added app_icon.ico as main picture which is used and added to zip.
1 parent ee574a5 commit 58bd091

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/gui/main_window.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
def main_window_function():
2727
main_window = tkinter.Tk()
2828
main_window.title("Verlosungs Tool")
29-
main_window.iconbitmap("..//graphics//in_app.ico")
29+
main_window.iconbitmap("..//graphics//app_icon.ico")
3030
main_window.geometry("250x150")
3131
main_window.maxsize(250, 150)
3232

tasks.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,9 @@ def create_exe(c, version="v9-9-9"):
6868
print("finished!")
6969

7070
print("-> start creating temporary folders and copy files")
71-
for folder in ["temp", "temp/logs", "temp/graphics/",
72-
"temp/graphics/rendered", "temp/graphics/rendered/general"]:
71+
for folder in ["temp", "temp/graphics/"]:
7372
os.mkdir(folder)
74-
73+
shutil.copyfile("graphics/app_icon.ico", "temp/graphics/app_icon.ico")
7574
shutil.copytree("dist/start_app", "temp/apps")
7675

7776
print("finished!")

0 commit comments

Comments
 (0)