Skip to content

Commit

Permalink
Added an Icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Tamzuu committed Mar 6, 2024
1 parent 26cd8b0 commit 4c60a8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Binary file added app_icon.ico
Binary file not shown.
3 changes: 2 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os
import random
from PIL import Image
from PIL import Image, ImageTk
import sys
import ctypes
import datetime
Expand Down Expand Up @@ -141,6 +141,7 @@ def _window_setup(self) -> None:
self.WINDOW = ctk.CTk()
self.WINDOW.geometry(str(WIDTH + main_frame_pad_x + tab_frame_width) + "x" + str(HEIGHT+((widget_padding_x+frame_padding)*2)))
self.WINDOW.title(self.APPNAME)
self.WINDOW.iconbitmap("app_icon.ico")
self.WINDOW.configure(fg_color=(light_window_color, window_color))
self.WINDOW.resizable(False, False)
self.WINDOW.grid_propagate(False)
Expand Down

0 comments on commit 4c60a8c

Please sign in to comment.