Skip to content

Commit

Permalink
adjust pointer areas, #147
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelzoom committed Feb 21, 2022
1 parent fdf9a27 commit 5a7ff0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/common/view/CueingArrowsNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ class CueingArrowsNode extends Path {
this.length = options.length;

this.boundsProperty.link( () => {
this.touchArea = this.localBounds;
this.mouseArea = this.localBounds;
this.touchArea = this.localBounds.dilated( 5 );
this.mouseArea = this.localBounds.dilated( 3 );
} );
}

Expand Down

0 comments on commit 5a7ff0f

Please sign in to comment.