Skip to content

Commit

Permalink
Fixed another visual bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Lemon4ksan committed Aug 23, 2024
1 parent 9b12856 commit 8472a7f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def __init__(self):
f"+{int(self.winfo_screenwidth() / 2 - 450 / 2)}"
f"+{int(self.winfo_screenheight() / 2 - 250 / 2)}"
)
self.iconbitmap(os.path.join(BASE_DIR, r'./App.ico'))
self.iconbitmap(os.path.join(BASE_DIR, 'App.ico'))
self.resizable(False, False)

self.stop_main_thread = False
Expand Down Expand Up @@ -406,6 +406,7 @@ class AdvancedOptions(ctk.CTkToplevel):
def __init__(self, root: App):
super().__init__()
self.title("Advanced Options")
self.iconbitmap(os.path.join(BASE_DIR, 'App.ico'))
self.grab_set()
self.geometry(
f"500x300"
Expand Down

0 comments on commit 8472a7f

Please sign in to comment.