Skip to content

Commit

Permalink
Version 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
m3gofriends committed Jul 20, 2021
1 parent c4e8cba commit 7e55cb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AutoClicker.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
root.title('AutoClicker')
screen_width = root.winfo_screenwidth()
screen_height = root.winfo_screenheight()
root.geometry(str(int(screen_width/4))+'x'+str(int(screen_height/3)))
root.geometry(str(screen_width//4) + 'x' + str(screen_height//3))

time_frame = tk.Frame(root)
time_frame.pack()
Expand Down

0 comments on commit 7e55cb7

Please sign in to comment.