From 97e7e3b68fffb7b9d36d15938fb44258fcfe0611 Mon Sep 17 00:00:00 2001 From: Florian Festi Date: Fri, 11 Jan 2019 12:16:26 +0100 Subject: [PATCH] TypeTray: Swap vertical edge types to match the layout of the UniversalBox --- boxes/generators/typetray.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/boxes/generators/typetray.py b/boxes/generators/typetray.py index 83a2dfd..ef51b1c 100644 --- a/boxes/generators/typetray.py +++ b/boxes/generators/typetray.py @@ -99,8 +99,8 @@ class TypeTray(_TopEdge): self.ctx.save() # outer walls - self.rectangularWall(x, h, [b, "f", t1, "f"], callback=[self.xHoles, None, self.gripHole], move="up") - self.rectangularWall(x, h, [b, "f", t3, "f"], callback=[self.xHoles, ], move="up") + self.rectangularWall(x, h, [b, "F", t1, "F"], callback=[self.xHoles, None, self.gripHole], move="up") + self.rectangularWall(x, h, [b, "F", t3, "F"], callback=[self.xHoles, ], move="up") # floor if b != "e": @@ -134,8 +134,8 @@ class TypeTray(_TopEdge): # y walls # outer walls - self.rectangularWall(y, h, [b, "F", t2, "F"], callback=[self.yHoles, ], move="up") - self.rectangularWall(y, h, [b, "F", t4, "F"], callback=[self.yHoles, ], move="up") + self.rectangularWall(y, h, [b, "f", t2, "f"], callback=[self.yHoles, ], move="up") + self.rectangularWall(y, h, [b, "f", t4, "f"], callback=[self.yHoles, ], move="up") # inner walls for i in range(len(self.sx) - 1):