Skip to content

Commit

Permalink
fix bad merge
Browse files Browse the repository at this point in the history
  • Loading branch information
andydotxyz committed Aug 17, 2024
1 parent 2f3e91e commit 89858f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/x11/win/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 89858f8

Please sign in to comment.