From 3eebe7ac024ca49d413b97084e05e3624ee0c4be Mon Sep 17 00:00:00 2001 From: Val Erastov Date: Thu, 1 Dec 2016 00:19:49 -0800 Subject: [PATCH] check for dumb mode --- web/app/sketcher/tools/circle.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {