Skip to content

Commit

Permalink
adresses bug in upstream list modification
Browse files Browse the repository at this point in the history
  • Loading branch information
zeffii authored Nov 3, 2018
1 parent 7b4cf52 commit b72083b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nodes/viz/viewer_polyline_mk1.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,8 +316,8 @@ def get(socket_name):
return dataCorrect(data)

mverts = get('vertices')
mradii = self.inputs['radii'].sv_get(deepcopy=False)
mtwist = self.inputs['twist'].sv_get(deepcopy=False)
mradii = self.inputs['radii'].sv_get(deepcopy=True)
mtwist = self.inputs['twist'].sv_get(deepcopy=True)
mmtrix = get('matrix')

# extend all non empty lists to longest of these
Expand Down

0 comments on commit b72083b

Please sign in to comment.