Skip to content

Commit 765062a

Browse files
committed
Fix typo when setting window icon
1 parent b485aa3 commit 765062a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cw-wizard-gui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ def set_window_icon(window):
458458

459459
if system_platform == 'Windows':
460460
# Method that's only work on Windows and cause blank title bar icon on Mac OS
461-
window.root.iconbitmap(defaul='assets/images/icon.ico')
461+
window.root.iconbitmap(default='assets/images/icon.ico')
462462
else:
463463
# Dont know if this method work on Linux but it's the only working one for Mac OS
464464
icon = tkinter.PhotoImage(file='assets/images/icon.png')

0 commit comments

Comments
 (0)