fixed hotkey parsing and double click bugs

This commit is contained in:
Dillon DuPont
2025-04-17 18:42:40 -04:00
parent 3e3a482cc8
commit 196f92617d
2 changed files with 37 additions and 5 deletions
@@ -542,7 +542,7 @@ class MacOSAutomationHandler(BaseAutomationHandler):
try:
if x is not None and y is not None:
pyautogui.moveTo(x, y)
pyautogui.doubleClick()
pyautogui.doubleClick(interval=0.1)
return {"success": True}
except Exception as e:
return {"success": False, "error": str(e)}