Skip to content

Commit

Permalink
Allow XMin to be zero
Browse files Browse the repository at this point in the history
Refs #7860
  • Loading branch information
DanNixon committed Oct 16, 2014
1 parent bdecbc8 commit f7b5dc4
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -191,8 +191,8 @@ def validateInputs(self):

# Validate X range
x_min = self.getProperty('XMin').value
if x_min < 1e-5:
issues['XMin'] = 'XMin must be greater than zero'
if x_min < -1e-5:
issues['XMin'] = 'XMin must be greater than or equal to zero'

x_max = self.getProperty('XMax').value
if x_max < 1e-5:
Expand Down

0 comments on commit f7b5dc4

Please sign in to comment.