diff --git a/python/plugins/processing/algs/qgis/ui/InterpolationDataWidget.py b/python/plugins/processing/algs/qgis/ui/InterpolationDataWidget.py index 1df90b93ba2..0049ac0f084 100644 --- a/python/plugins/processing/algs/qgis/ui/InterpolationDataWidget.py +++ b/python/plugins/processing/algs/qgis/ui/InterpolationDataWidget.py @@ -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)