Skip to content

Commit cb32ada

Browse files
author
cfarmer
committed
Removes extraneous minimum distance option (not currently a real option) from random points tool. Addresses #3213
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@14734 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 2e406cb commit cb32ada

File tree

2 files changed

+94
-133
lines changed

2 files changed

+94
-133
lines changed

python/plugins/fTools/tools/doRandPoints.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,7 @@ def accept(self):
116116
value = self.spnUnstratified.value()
117117
else:
118118
QMessageBox.information(self, self.tr("Random Points"), self.tr("Unknown layer type..."))
119-
if self.chkMinimum.isChecked():
120-
minimum = self.spnMinimum.value()
121-
else:
122-
minimum = 0.00
119+
minimum = 0.00
123120
self.progressBar.setValue(10)
124121
self.randomize(inLayer, outPath, minimum, design, value)
125122
self.progressBar.setValue(100)

0 commit comments

Comments
 (0)