Skip to content

Commit eda85f1

Browse files
author
brushtyler
committedMar 5, 2011
fix #3450
git-svn-id: http://svn.osgeo.org/qgis/trunk@15342 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent c85fe42 commit eda85f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎python/plugins/GdalTools/tools/doGrid.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ def getArguments(self):
130130
return arguments
131131

132132
def getInputFileName(self):
133-
#if self.inputLayerCombo.currentIndex() >= 0:
134-
# return self.layers[self.inputLayerCombo.currentIndex()].source()
133+
if self.inputLayerCombo.currentIndex() >= 0:
134+
return self.layers[self.inputLayerCombo.currentIndex()].source()
135135
return self.inputLayerCombo.currentText()
136136

137137
def getOutputFileName(self):

0 commit comments

Comments
 (0)
Please sign in to comment.