diff --git a/Notepad.py b/Notepad.py index cbe1370..87d9d92 100755 --- a/Notepad.py +++ b/Notepad.py @@ -8,6 +8,7 @@ class Notepad: #variables __root = Tk() + __root.wm_iconbitmap("report-3-16.ico") #default window width and height __thisWidth = 300 @@ -23,11 +24,11 @@ class Notepad: def __init__(self,**kwargs): #initialization - #set icon + #set icon try: - self.__root.wm_iconbitmap("Notepad.ico") #GOT TO FIX THIS ERROR (ICON) - except: - pass + self.__root.wm_iconbitmap("Notepad.ico") #GOT TO FIX THIS ERROR (ICON) + except: + pass #set window size (the default is 300x300) diff --git a/report-3-16.ico b/report-3-16.ico new file mode 100644 index 0000000..bb79fd9 Binary files /dev/null and b/report-3-16.ico differ