Skip to content

Commit 52326f3

Browse files
Update stopwatch_gui.py
1 parent d766642 commit 52326f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Stopwatch GUI/stopwatch_gui.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def reset():
5353
work = False
5454

5555
root = tk.Tk()
56-
root.geometry("500x400") #width x height
56+
root.geometry("500x221") #width x height
5757
root.title("My StopWatch")
5858

5959
txt_var = tk.StringVar()
@@ -71,4 +71,4 @@ def reset():
7171
tk.Button(root,text='Pause',command = pause,bg ='misty rose').pack(fill='x')
7272
tk.Button(root,text = 'Reset',command = reset,bg ='misty rose').pack(fill='x')
7373
tk.Button(root,text = 'Exit',command = root.destroy,bg ='misty rose').pack(fill='x')
74-
root.mainloop()
74+
root.mainloop()

0 commit comments

Comments
 (0)