From 6ab0cef413c110947d20b5fd3d414d170c7a2a13 Mon Sep 17 00:00:00 2001 From: Florian Festi Date: Sat, 12 Nov 2022 09:17:56 +0100 Subject: [PATCH] Use straight edge for slots SlottedEdge Used the connecting edge due to an aliasing issue. This broke as the FingerJointEdge now places fingers even for smaller lengths. Thanks to Nic Jansma (https://github.com/nicjansma) for reporting! Resolves: #452 --- boxes/edges.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boxes/edges.py b/boxes/edges.py index 34914a4..256168b 100644 --- a/boxes/edges.py +++ b/boxes/edges.py @@ -817,7 +817,7 @@ class SlottedEdge(BaseEdge): if self.slots: Slot(self.boxes, self.slots)(self.settings.thickness) else: - self.edge(self.settings.thickness) + self.boxes.edge(self.settings.thickness) self.edge(self.sections[-1])