We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
move(xoff, yoff)
Method Mouse().move(xoff, yoff) move cursor to an absolute position (xoff, yoff). But it should do offset from the current position. I think this line
Mouse().move(xoff, yoff)
(xoff, yoff)
lackey/lackey/InputEmulation.py
Line 43 in 1ea404a
mouse.move(xoff, yoff, absolute=False)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Method
Mouse().move(xoff, yoff)
move cursor to an absolute position(xoff, yoff)
. But it should do offset from the current position.I think this line
lackey/lackey/InputEmulation.py
Line 43 in 1ea404a
should be replaced with
mouse.move(xoff, yoff, absolute=False)
The text was updated successfully, but these errors were encountered: