Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
save file instead of open it in select output file dialog
  • Loading branch information
brushtyler committed May 10, 2011
1 parent 6941b54 commit 6e83e4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/GdalTools/tools/doContour.py
Expand Up @@ -52,7 +52,7 @@ def fillInputFileEdit(self):
def fillOutputFileEdit(self):
if not self.useDirAsOutput:
lastUsedFilter = Utils.FileFilter.lastUsedVectorFilter()
outputFile, encoding = Utils.FileDialog.getOpenFileName(self, self.tr( "Select where to save the Contour output" ), Utils.FileFilter.allVectorsFilter(), lastUsedFilter, True)
outputFile, encoding = Utils.FileDialog.getSaveFileName(self, self.tr( "Select where to save the Contour output" ), Utils.FileFilter.allVectorsFilter(), lastUsedFilter, True)
else:
outputFile, encoding = Utils.FileDialog.getExistingDirectory(self, self.tr( "Select where to save the Contour output" ), True)

Expand Down

0 comments on commit 6e83e4b

Please sign in to comment.