Skip to content
This repository has been archived by the owner on Sep 6, 2024. It is now read-only.

Commit

Permalink
Bugfix in response to #25
Browse files Browse the repository at this point in the history
  • Loading branch information
rsimon committed Dec 12, 2023
1 parent bea78d6 commit ff90d07
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
dist
dist
.DS_Store
2 changes: 1 addition & 1 deletion src/ellipse/RubberbandEllipse.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default class RubberbandEllipse {

this.group = document.createElementNS(SVG_NAMESPACE, 'g');

this.ellipse = drawEllipse(anchorX, anchorY, 2);
this.ellipse = drawEllipse(anchorX, anchorY, 2, 2);
this.ellipse.setAttribute('class', 'a9s-selection');

this.mask = new Mask(env.image, this.ellipse);
Expand Down

0 comments on commit ff90d07

Please sign in to comment.