mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
[processing] Fix rasterize dialog openning
Fix #16061 Do not pass in getConsoleCommand just to get commandName for shortHelp. This avoid errors with non initialized parameters.
This commit is contained in:
parent
b3e1aba1cd
commit
bc09875866
@ -163,3 +163,6 @@ class rasterize(GdalAlgorithm):
|
||||
|
||||
arguments.append(out)
|
||||
return ['gdal_rasterize', GdalUtils.escapeAndJoin(arguments)]
|
||||
|
||||
def commandName(self):
|
||||
return "gdal_rasterize"
|
||||
|
@ -85,3 +85,6 @@ class rasterize_over(GdalAlgorithm):
|
||||
arguments.append(ogrRasterLayer)
|
||||
|
||||
return ['gdal_rasterize', GdalUtils.escapeAndJoin(arguments)]
|
||||
|
||||
def commandName(self):
|
||||
return "gdal_rasterize"
|
||||
|
Loading…
x
Reference in New Issue
Block a user