Fix placement of fingerHoles in CrossingFingerHoleEdge

which were too low by one burn
This commit is contained in:
Florian Festi 2018-08-27 15:12:17 +02:00
parent 0e8a718a1b
commit fc127237fd
1 changed files with 1 additions and 1 deletions

View File

@ -733,7 +733,7 @@ class CrossingFingerHoleEdge(Edge):
self.height = height
def __call__(self, length, **kw):
self.fingerHoles(length / 2.0, 0, self.height)
self.fingerHoles(length / 2.0, self.burn, self.height)
super(CrossingFingerHoleEdge, self).__call__(length)