From 56a295c3efdf73b485e5d0b46118ebb384ba5693 Mon Sep 17 00:00:00 2001 From: bluesaxman Date: Mon, 12 Sep 2022 16:45:14 -0600 Subject: [PATCH] c to C for fColor in shape render --- libs/bluepixle.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/bluepixle.js b/libs/bluepixle.js index 43d76fb..79c9f10 100644 --- a/libs/bluepixle.js +++ b/libs/bluepixle.js @@ -49,7 +49,7 @@ class shape { ctx.rotate(origRot); ctx.translate(-origin.d[0],-origin.d[1]); // Draw - ctx.fillStyle = this.fcolor; + ctx.fillStyle = this.fColor; ctx.strokeStyle = this.bColor; ctx.lineWidth = this.bStyle; if("rect" == this.type) {