Skip to content

Commit

Permalink
followup 9d7484c: 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 a6ad7db commit a9e0be5
Showing 1 changed file with 1 addition and 1 deletion.
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 a9e0be5

Please sign in to comment.