Skip to content

Commit 1b21193

Browse files
committed
fix: mouse click in to mouseUp bind
1 parent 7080f3e commit 1b21193

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/fireworks-js/src/mouse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export class Mouse {
77

88
constructor(private readonly canvas: HTMLCanvasElement) {
99
this.mouseDown = this.mouseDown.bind(this)
10-
this.mouseUp = this.mouseMove.bind(this)
10+
this.mouseUp = this.mouseUp.bind(this)
1111
this.mouseMove = this.mouseMove.bind(this)
1212
}
1313

0 commit comments

Comments
 (0)