Skip to content

Commit

Permalink
Merge pull request #4445 from arnaud-morvan/processing_fix_rasterize
Browse files Browse the repository at this point in the history
[processing] fix rasterize dialog openning (fix #16061)
  • Loading branch information
alexbruy committed Apr 30, 2017
2 parents b587282 + bc09875 commit ed103e5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python/plugins/processing/algs/gdal/rasterize.py
Expand Up @@ -163,3 +163,6 @@ def getConsoleCommands(self):

arguments.append(out)
return ['gdal_rasterize', GdalUtils.escapeAndJoin(arguments)]

def commandName(self):
return "gdal_rasterize"
3 changes: 3 additions & 0 deletions python/plugins/processing/algs/gdal/rasterize_over.py
Expand Up @@ -85,3 +85,6 @@ def getConsoleCommands(self):
arguments.append(ogrRasterLayer)

return ['gdal_rasterize', GdalUtils.escapeAndJoin(arguments)]

def commandName(self):
return "gdal_rasterize"

0 comments on commit ed103e5

Please sign in to comment.