Skip to content

Commit

Permalink
Merge pull request #27 from quinnjn/patch-1
Browse files Browse the repository at this point in the history
Fix variable name typo
  • Loading branch information
arpruss authored Jan 30, 2021
2 parents b34af8d + e21e26c commit 59e88ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gcodeplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ def parseSVG(svgTree, tolerance=0.05, shader=None, strokeAll=False, pens=None, e
del data[strokePen]

if shader is not None and shader.isActive() and path.svgState.fill is not None and (extractColor is None or
isSameColor(path.svgStatefill, extractColor)):
isSameColor(path.svgState.fill, extractColor)):
pen = getPen(pens, path.svgState.fill)

if pen not in data:
Expand Down

0 comments on commit 59e88ab

Please sign in to comment.