Navigation Menu

Skip to content

Commit

Permalink
Removes extraneous minimum distance option (not currently a real opti…
Browse files Browse the repository at this point in the history
…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.
5 changes: 1 addition & 4 deletions python/plugins/fTools/tools/doRandPoints.py
Expand Up @@ -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)
Expand Down

0 comments on commit cb32ada

Please sign in to comment.