From 7e55cb775c5a2dcbb602b22304caeb17dc9ab153 Mon Sep 17 00:00:00 2001 From: m3gofriends Date: Tue, 20 Jul 2021 13:36:50 +0800 Subject: [PATCH] Version 1.0 --- AutoClicker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AutoClicker.py b/AutoClicker.py index da4cc16..3a863fa 100644 --- a/AutoClicker.py +++ b/AutoClicker.py @@ -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()