Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion SparkFunKiCadPanelizer/panelizer/panelizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,9 @@ def startPanelizer(self, args, board=None, ordering=None, logger=None):
lines = txt.splitlines()
for line in lines:
if "mask" in line or "Mask" in line or "MASK" in line:
solderMask = line
solderMask = line # This will override the possibleLogos mask color
if "silkscreen" in line or "Silkscreen" in line or "SILKSCREEN" in line:
silkscreen = line # This will override the possibleLogos silk color
if "layers" in line or "Layers" in line or "LAYERS" in line:
if copperLayers is None: # Should we trust the instructions or the tracks?!
copperLayers = line
Expand Down