fixed edge ordering for topEdges() function

This commit is contained in:
suks.ae 2022-08-20 09:24:25 +02:00 committed by Florian Festi
parent f57ba7fdb8
commit 93a4cad4f4
1 changed files with 1 additions and 2 deletions

View File

@ -97,10 +97,9 @@ class TypeTray(_TopEdge):
hi = self.hi = self.hi or h
t = self.thickness
# outer walls
b = self.bottom_edge
t1, t2, t3, t4 = self.topEdges(self.top_edge)
t2, t1, t4, t3 = self.topEdges(self.top_edge)
self.closedtop = self.top_edge in "fFhŠ"
bh = self.back_height if self.top_edge == "e" else 0.0