Fix placement of fingerHoles in CrossingFingerHoleEdge
which were too low by one burn
This commit is contained in:
parent
0e8a718a1b
commit
fc127237fd
|
@ -733,7 +733,7 @@ class CrossingFingerHoleEdge(Edge):
|
||||||
self.height = height
|
self.height = height
|
||||||
|
|
||||||
def __call__(self, length, **kw):
|
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)
|
super(CrossingFingerHoleEdge, self).__call__(length)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue