Skip to content

Commit 6d5bbed

Browse files
committed
Merge pull request #323 from sanak/ftools-dissolve-line
Add line layer support for dissolve function (fix #5059)
2 parents 716e188 + 05aca2b commit 6d5bbed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/fTools/tools/doGeoprocessing.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ def populateLayers( self ):
195195
self.inShapeB.clear()
196196

197197
if self.myFunction == 4:
198-
myListA = ftools_utils.getLayerNames( [ QGis.Polygon ] )
198+
myListA = ftools_utils.getLayerNames( [ QGis.Line, QGis.Polygon ] )
199199
myListB = []
200200
else:
201201
myListA = ftools_utils.getLayerNames( [ QGis.Point, QGis.Line, QGis.Polygon ] )

0 commit comments

Comments
 (0)