From 971c20be7cafeabb6c9a67d80dae64a273d7e057 Mon Sep 17 00:00:00 2001 From: Florian Festi Date: Mon, 16 Jan 2023 12:16:13 +0100 Subject: [PATCH] trapezoidSideWall: Fix call to move resulting in an assert error as the label was used as "before" parameter which messes up the whole magic inside .move(). As a result the .stroke() method was not called - leading to unprocesses paths - triggering the assert. Resolves: #423 --- boxes/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boxes/__init__.py b/boxes/__init__.py index 83ac3c5..5981545 100755 --- a/boxes/__init__.py +++ b/boxes/__init__.py @@ -2597,7 +2597,7 @@ class Boxes: edges[3](h0) self.edgeCorner(edges[-1], edges[0], 90) - self.move(overallwidth, overallheight, move, label) + self.move(overallwidth, overallheight, move, label=label) ### polygonWall and friends