Skip to content
Permalink
Browse files
Removes extraneous minimum distance option (not currently a real opti…
…on) from random points tool. Addresses #3213

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@14734 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
cfarmer committed Nov 21, 2010
1 parent 2e406cb commit cb32ada
Show file tree
Hide file tree
Showing 2 changed files with 94 additions and 133 deletions.
@@ -116,10 +116,7 @@ def accept(self):
value = self.spnUnstratified.value()
else:
QMessageBox.information(self, self.tr("Random Points"), self.tr("Unknown layer type..."))
if self.chkMinimum.isChecked():
minimum = self.spnMinimum.value()
else:
minimum = 0.00
minimum = 0.00
self.progressBar.setValue(10)
self.randomize(inLayer, outPath, minimum, design, value)
self.progressBar.setValue(100)

0 comments on commit cb32ada

Please sign in to comment.