BinTray: Fix finger holes in side walls
Pattern was mirrored before. Resolves: #348 Thanks to https://github.com/Al0rin for reporting!
This commit is contained in:
parent
ee2baab396
commit
b11f9b0f1a
|
@ -90,7 +90,7 @@ class BinTray(Boxes):
|
|||
|
||||
def yHoles(self):
|
||||
posy = -0.5 * self.thickness
|
||||
for y in self.sy[:-1]:
|
||||
for y in reversed(self.sy[1:]):
|
||||
posy += y + self.thickness
|
||||
self.fingerHolesAt(posy, 0, self.hi)
|
||||
|
||||
|
|
Loading…
Reference in New Issue