From adc3ec52101515bcc047e85033a9603035533012 Mon Sep 17 00:00:00 2001 From: Florian Festi Date: Fri, 16 Oct 2020 11:36:20 +0200 Subject: [PATCH] Fix polygonWalls() Not calling .stroke() now creates a error with the new backend. Thanks to Michel27290 (https://hackaday.io/hacker/1123712) for reporting! --- boxes/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/boxes/__init__.py b/boxes/__init__.py index 365c0f9..05f1abe 100755 --- a/boxes/__init__.py +++ b/boxes/__init__.py @@ -2230,6 +2230,7 @@ class Boxes: self.edgeCorner(top, left, 90) left(h) self.edgeCorner(left, bottom, 90) + self.ctx.stroke() self.moveTo(right.spacing() + self.spacing) part_cnt += 1