followup a463858: fix interpol. data widget setValue function

This commit is contained in:
nirvn 2018-04-20 10:13:14 +07:00
parent c70c78412c
commit 7d787980f5

View File

@ -114,7 +114,7 @@ class InterpolationDataWidget(BASE, WIDGET):
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)