diff --git a/python/plugins/fTools/tools/doGeoprocessing.py b/python/plugins/fTools/tools/doGeoprocessing.py index 1429bbb67fb..a7b79de4441 100755 --- a/python/plugins/fTools/tools/doGeoprocessing.py +++ b/python/plugins/fTools/tools/doGeoprocessing.py @@ -152,8 +152,8 @@ class GeoprocessingDialog( QDialog, Ui_Dialog ): myListA = ftools_utils.getLayerNames( [ QGis.Point, QGis.Line, QGis.Polygon ] ) myListB = ftools_utils.getLayerNames( [ QGis.Polygon ] ) elif self.myFunction == 7 or self.myFunction == 6: - myListA = ftools_utils.getLayerNames( [ QGis.Polygon ] ) - myListB = ftools_utils.getLayerNames( [ QGis.Polygon ] ) + myListA = ftools_utils.getLayerNames( [ QGis.Point, QGis.Line, QGis.Polygon ] ) # added points and lines to test + myListB = ftools_utils.getLayerNames( [ QGis.Point, QGis.Line, QGis.Polygon ] ) # added points and lines to test elif self.myFunction == 4: myListA = ftools_utils.getLayerNames( [ QGis.Polygon ] ) myListB = []