diff --git a/web/app/sketcher/tools/circle.js b/web/app/sketcher/tools/circle.js index 0b82068b..65c6d5ad 100644 --- a/web/app/sketcher/tools/circle.js +++ b/web/app/sketcher/tools/circle.js @@ -22,7 +22,7 @@ export class EditCircleTool extends Tool { if (this.circle != null) { var r = math.distance(p.x, p.y, this.circle.c.x, this.circle.c.y); this.circle.r.set(r); - if (!e.shiftKey) { + if (!Tool.dumbMode(e)) { this.solveRequest(true); } } else {