From 77380a7b535e5d59c09723e33aa218a991338197 Mon Sep 17 00:00:00 2001 From: Victor Seiji Hariki Date: Tue, 29 Nov 2022 18:23:35 -0300 Subject: [PATCH] remove debug dot in the cursor Signed-off-by: Victor Seiji Hariki --- js/lib/toolbar.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/js/lib/toolbar.js b/js/lib/toolbar.js index 54a17c5..d6ae9d9 100644 --- a/js/lib/toolbar.js +++ b/js/lib/toolbar.js @@ -189,9 +189,4 @@ const _reticle_draw = (evn, snapToGrid = true) => { ovCtx.lineWidth = 1; ovCtx.strokeStyle = "#FFF"; ovCtx.strokeRect(bb.x, bb.y, bb.w, bb.h); //origin is middle of the frame - // TEMP - ovCtx.fillStyle = "#0FF"; - ovCtx.beginPath(); - ovCtx.arc(evn.x, evn.y, 5, 0, Math.PI * 2); - ovCtx.fill(); };