mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-09 01:44:19 +01:00
check for dumb mode
This commit is contained in:
parent
f3409df80c
commit
3eebe7ac02
1 changed files with 1 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue