TypeTray: Fix finger holes in bottom which had been mirrored in x direction
This commit is contained in:
parent
616bf42239
commit
50b9bc9ffb
|
@ -50,7 +50,7 @@ class TypeTray(Boxes):
|
|||
for y in self.sy[:-1]:
|
||||
posy += y + self.thickness
|
||||
posx = 0
|
||||
for x in self.sx:
|
||||
for x in reversed(self.sx):
|
||||
self.fingerHolesAt(posy, posx, x)
|
||||
posx += x + self.thickness
|
||||
|
||||
|
|
Loading…
Reference in New Issue