Skip to content

Commit

Permalink
Bump minimum tile size to 64 for rasterise alg
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Aug 10, 2017
1 parent ab21f3e commit 13431ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/Rasterize.py
Expand Up @@ -113,7 +113,7 @@ def initAlgorithm(self, config=None):
QgsProcessingParameterNumber(
self.TILE_SIZE,
self.tr('Tile size'),
defaultValue=1024, minValue=0))
defaultValue=1024, minValue=64))

self.addParameter(QgsProcessingParameterNumber(
self.MAP_UNITS_PER_PIXEL,
Expand Down

0 comments on commit 13431ca

Please sign in to comment.