(event)
| 25 | } |
| 26 | |
| 27 | default_dragMove(event) { |
| 28 | if (config.TOOL.name != this.name) |
| 29 | return; |
| 30 | |
| 31 | //mouse cursor |
| 32 | var mouse = this.get_mouse_info(event); |
| 33 | var params = this.getParams(); |
| 34 | this.show_mouse_cursor(mouse.x, mouse.y, params.radius, 'circle'); |
| 35 | } |
| 36 | |
| 37 | mousedown(e) { |
| 38 | this.started = false; |
nothing calls this directly
no test coverage detected