From 50b9bc9ffba8719e9ec0e612018ab8167fc03390 Mon Sep 17 00:00:00 2001 From: Florian Festi Date: Wed, 25 Apr 2018 23:36:32 +0200 Subject: [PATCH] TypeTray: Fix finger holes in bottom which had been mirrored in x direction --- boxes/generators/typetray.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boxes/generators/typetray.py b/boxes/generators/typetray.py index 51a5f3c..46a4854 100644 --- a/boxes/generators/typetray.py +++ b/boxes/generators/typetray.py @@ -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