mirror of
https://github.com/go-vgo/robotgo
synced 2026-05-24 10:19:01 +00:00
Fix typo in doc for GetMousePos (#462)
This commit is contained in:
parent
6c1e845183
commit
264f658a46
1 changed files with 1 additions and 1 deletions
|
|
@ -621,7 +621,7 @@ func MoveSmoothRelative(x, y int, args ...interface{}) {
|
|||
MoveSmooth(mx, my, args...)
|
||||
}
|
||||
|
||||
// GetMousePos get the mouse's portion return x, y
|
||||
// GetMousePos get the mouse's position return x, y
|
||||
func GetMousePos() (int, int) {
|
||||
pos := C.getMousePos()
|
||||
x := int(pos.x)
|
||||
|
|
|
|||
Loading…
Reference in a new issue