Skip to content

Commit 6ef15c9

Browse files
feat: add duration as parameter in the reporter for mouse_move (as requested per samirs review)
1 parent f1b70b6 commit 6ef15c9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/askui/tools/askui/askui_controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ def mouse_move(self, x: int, y: int, duration: int = 500) -> None:
378378
"""
379379
self._reporter.add_message(
380380
"AgentOS",
381-
f"mouse_move({x}, {y})",
381+
f"mouse_move({x}, {y}, duration={duration})",
382382
AnnotatedImage(lambda: self.screenshot(report=False), point_list=[(x, y)]),
383383
)
384384
self._run_recorder_action(

0 commit comments

Comments
 (0)