Fix latch length

Remove no longer needed burn correction
This commit is contained in:
Florian Festi 2016-09-26 21:49:40 +02:00
parent 09ce2bd78b
commit 14acd07faf
1 changed files with 2 additions and 2 deletions

View File

@ -625,7 +625,7 @@ class Boxes:
"""
if positive:
if reverse:
self.edge(length / 2.0 - self.burn)
self.edge(length / 2.0)
self.corner(-90)
self.edge(self.thickness)
self.corner(90)
@ -634,7 +634,7 @@ class Boxes:
self.edge(self.thickness)
self.corner(-90)
if not reverse:
self.edge(length / 2.0 - self.burn)
self.edge(length / 2.0)
else:
if reverse:
self._latchGrip(length)