Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
d3alek committed Nov 19, 2013
1 parent ced4e41 commit f8ec447
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/twobigears/circlesynth/SynthCircle.java
Expand Up @@ -1104,7 +1104,7 @@ public void updateCircles(float mX, float mY) {

double dist = Math.sqrt(deltaX * deltaX + deltaY * deltaY);

if (dist < outerCircSize / 2) {
if (dist < outerCircSize) {
xDown = mX;
yDown = mY;
if (hasLine) {
Expand Down

0 comments on commit f8ec447

Please sign in to comment.