Skip to content

Commit

Permalink
changes to accomodate alpha channel support
Browse files Browse the repository at this point in the history
  • Loading branch information
fsmMLK committed Apr 25, 2021
1 parent 8a9fe8d commit 7b939be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions latest/createMarkers.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ def effect(self):
# root_layer = self.getcurrentLayer()

# sets colors. See inkDraw.color class for instructions.
[markerColor, alpha] = inkDraw.color.parseColorPicker(so.markColorOption, so.colorPickerMark)
[lineColor, alpha] = inkDraw.color.parseColorPicker(so.lineColorOption, so.colorPickerLine)
markerColor = inkDraw.color.parseColorPicker(so.markColorOption, so.colorPickerMark)
lineColor = inkDraw.color.parseColorPicker(so.lineColorOption, so.colorPickerLine)

if so.markerType == 'dot':
nameMarkerDot = inkDraw.marker.createDotMarker(self, so.markerName + '_' + str(so.scale), RenameMode=int(so.renameMode),
Expand Down

0 comments on commit 7b939be

Please sign in to comment.