Skip to content

Commit

Permalink
1.6.1
Browse files Browse the repository at this point in the history
- Fixed a bug that didn't allow the program work with normality if the "Click until stopped" box was checked
  • Loading branch information
PETEROLO291 committed Aug 27, 2022
1 parent 494066b commit ad668a3
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,6 @@ def click_loop():

if cb_marked == False and clicking == True:


sleep(0.05)

while repeat != 0 and clicking == True and running == True and values["-CTIOM-"] == "Single Click":
Expand All @@ -230,6 +229,22 @@ def click_loop():
clicking = False


elif cb_marked == True and clicking == True:

sleep(0.05)

while clicking == True and running == True and values["-CTIOM-"] == "Single Click":

click(click_but)
sleep(float(delay))


while clicking == True and running == True and values["-CTIOM-"] == "Double Click":

double_click(click_but)
sleep(float(delay))



if clicking == False:
sleep(0.24)
Expand Down

0 comments on commit ad668a3

Please sign in to comment.