diff --git a/internal/x11/win/client.go b/internal/x11/win/client.go index 99cd71f8..a8242d93 100644 --- a/internal/x11/win/client.go +++ b/internal/x11/win/client.go @@ -266,8 +266,8 @@ func (c *client) NotifyMouseMotion(x, y int16) { c.frame.mouseMotion(x, y) } -func (c *client) NotifyMousePress(x, y int16, b xproto.Button, s uint16) { - c.frame.mousePress(x, y, b, s) +func (c *client) NotifyMousePress(x, y int16, b xproto.Button) { + c.frame.mousePress(x, y, b) } func (c *client) NotifyMouseRelease(x, y int16, b xproto.Button) {