Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix #8218
  • Loading branch information
ddanielvaz committed Jul 10, 2013
1 parent 6f82a89 commit 89b3e06
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions python/plugins/fTools/tools/doIntersectLines.py
Expand Up @@ -139,6 +139,10 @@ def compute(self, line1, line2, field1, field2, outPath, progressBar):
inFeat = QgsFeature()
inFeatB = QgsFeature()
outFeat = QgsFeature()
outFields = QgsFields()
outFields.append(field1)
outFields.append(field2)
outFeat.setFields(outFields)
start = 15.00
add = 85.00 / layer1.featureCount()

Expand Down

0 comments on commit 89b3e06

Please sign in to comment.