Skip to content

Commit

Permalink
Fix text on bottom side for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
yaqwsx committed Jul 18, 2024
1 parent 5fe407f commit 0de661c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kikit/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def isBottomLayer(layer):
"""
Decide if layer is a bottom layer
"""
return str(layer).startswith("Layer.B_")
return layer.name.startswith("B_")

def commonPoints(lines):
"""
Expand Down

0 comments on commit 0de661c

Please sign in to comment.