From bd2ad29981c15037ff5c5010649edd74ffe06c21 Mon Sep 17 00:00:00 2001 From: blue Date: Tue, 20 Nov 2018 17:32:45 +0300 Subject: [PATCH] coloring fix --- painting/shape.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/painting/shape.js b/painting/shape.js index d1bc20f..4f9a9a1 100644 --- a/painting/shape.js +++ b/painting/shape.js @@ -32,7 +32,7 @@ class Shape { maxY = h; } static setColoring(bool) { - coloring = bool !== true; + coloring = bool !== false; } }