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
This commit is contained in:
Florian Festi 2023-01-16 12:16:13 +01:00
parent a2bf4c060f
commit 971c20be7c
1 changed files with 1 additions and 1 deletions

View File

@ -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