Skip to content

Commit

Permalink
Update do_sth.py
Browse files Browse the repository at this point in the history
  • Loading branch information
DevLenn authored Jul 13, 2024
1 parent a0d9b42 commit cdf23e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions do_sth.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class App:
def __init__(self, root):
self.root = root
self.root.title("Automatisierungswerkzeug")
self.root.title("Automation Tool")

self.action_var = tk.StringVar(value="click")
self.keys_var1 = tk.StringVar(value="F1")
Expand Down Expand Up @@ -85,7 +85,7 @@ def start_action(self):
threading.Thread(target=self.execute_action).start()

def execute_action(self):
time.sleep(3) # 3 Sekunden Verzögerung
time.sleep(3) # 3 seconds delay
action = self.action_var.get()
if action in ("click", "dbl_click", "r_click"):
x = int(self.x_var.get())
Expand Down

0 comments on commit cdf23e4

Please sign in to comment.