TypeTray: Fix finger holes in bottom which had been mirrored in x direction

This commit is contained in:
Florian Festi 2018-04-25 23:36:32 +02:00
parent 616bf42239
commit 50b9bc9ffb
1 changed files with 1 additions and 1 deletions

View File

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