Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] convert strings to numbers when initializing parameters
from description file (fix #11011)
  • Loading branch information
alexbruy committed Aug 6, 2014
1 parent fec2711 commit 4fb2898
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/core/parameters.py
Expand Up @@ -367,8 +367,8 @@ def __init__(self, name='', description='', minValue=None, maxValue=None,
except:
self.default = float(default)
self.isInteger = False
self.min = minValue
self.max = maxValue
self.min = int(minValue) if self.isInteger else float(minValue)
self.max = int(maxValue) if self.isInteger else float(maxValue)
self.value = None

def setValue(self, n):
Expand Down

0 comments on commit 4fb2898

Please sign in to comment.