SBCMicroRack: Don't draw bottom fingerholes twice

This commit is contained in:
Florian Festi 2019-11-07 15:21:59 +01:00
parent af6c9be8f7
commit d9c190073b
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ class SBCMicroRack(Boxes):
def paint_finger_holes(self):
t = self.thickness
height_per = self.clearance_z + t
for i in range(self.sbcs + 1):
for i in range(self.sbcs):
self.fingerHolesAt((height_per) * i + +height_per/2 + 1.5, self.hole_dist_edge, self.x, 90)
def render(self):