Skip to content

Commit

Permalink
followup a463858: fix interpol. data widget setValue function
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Apr 20, 2018
1 parent c70c784 commit 7d78798
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def setValue(self, value):
self.layersTree.clear()
rows = value.split(';')
for i, r in enumerate(rows):
v = r.split(',')
v = r.split('::~::')
self.addLayerData(v[0], v[1])

comboBox = self.layersTree.itemWidget(self.layersTree.topLevelItem(i), 2)
Expand Down

0 comments on commit 7d78798

Please sign in to comment.