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:
Florian Festi 2021-12-04 18:48:41 +01:00
parent ee2baab396
commit b11f9b0f1a
1 changed files with 1 additions and 1 deletions

View File

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