From a440752f7397a43a4c8b6e3434063e5a9381bd98 Mon Sep 17 00:00:00 2001 From: Devine Lu Linvega Date: Thu, 1 Feb 2018 09:32:47 +1300 Subject: [PATCH] Fixed translation color --- sources/scripts/guide.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/scripts/guide.js b/sources/scripts/guide.js index 084f181..666e121 100644 --- a/sources/scripts/guide.js +++ b/sources/scripts/guide.js @@ -129,7 +129,7 @@ function Guide() ctx.lineTo((to.x * -2)+20,(to.y * 2)+20); ctx.lineCap="round"; ctx.lineWidth = 5; - ctx.strokeStyle = dotgrid.theme.active.f_inv; + ctx.strokeStyle = dotgrid.theme.active.b_inv; ctx.stroke(); ctx.closePath(); }