mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-16 00:03:12 -04:00
Merge pull request #3619 from nirvn/processing_tinyfix
[processing] fix missing argument when calling getMinCoveringExtent()
This commit is contained in:
commit
1762c9ca3c
@ -403,7 +403,7 @@ class ParameterExtent(Parameter):
|
|||||||
|
|
||||||
def evaluate(self, alg):
|
def evaluate(self, alg):
|
||||||
if self.optional and not bool(self.value):
|
if self.optional and not bool(self.value):
|
||||||
self.value = self.getMinCoveringExtent()
|
self.value = self.getMinCoveringExtent(alg)
|
||||||
|
|
||||||
def getMinCoveringExtent(self, alg):
|
def getMinCoveringExtent(self, alg):
|
||||||
first = True
|
first = True
|
||||||
|
Loading…
x
Reference in New Issue
Block a user