From 525398d2ecc1c849ddb7421e5e16c565001a0a5f Mon Sep 17 00:00:00 2001 From: Mitchell McCaffrey Date: Mon, 22 Feb 2021 10:41:34 +1100 Subject: [PATCH] Added back fog stroke when not editing --- src/components/map/MapFog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/map/MapFog.js b/src/components/map/MapFog.js index 2695dc1..b05411b 100644 --- a/src/components/map/MapFog.js +++ b/src/components/map/MapFog.js @@ -492,7 +492,7 @@ function MapFog({ closed lineCap="round" lineJoin="round" - strokeWidth={editable ? gridStrokeWidth * shape.strokeWidth : 0} + strokeWidth={gridStrokeWidth * shape.strokeWidth} opacity={editable ? (!shape.visible ? 0.2 : 0.5) : 1} fillPatternImage={patternImage} fillPriority={active && !shape.visible ? "pattern" : "color"}