]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/GeomValidators/GeomValidators_Positive.cpp
Salome HOME
CEA : Lot2 - Add new filters
[modules/shaper.git] / src / GeomValidators / GeomValidators_Positive.cpp
index 89cc9a2639e0d71ef040c6ee7f335fa78ae546c6..4d5527eba3c3174150703a904109ca8f89693752 100644 (file)
@@ -44,11 +44,11 @@ bool GeomValidators_Positive::isValid(const AttributePtr& theAttribute,
                                       const std::list<std::string>& theArguments,
                                       Events_InfoMessage& theError) const
 {
-  double aMinValue = 1.e-5;
-  if(theArguments.size() == 1) {
+  double aMinValue = 1.e-12;
+  if (theArguments.size() == 1) {
     std::list<std::string>::const_iterator anIt = theArguments.begin();
     double aValue = Config_PropManager::stringToDouble((*anIt).c_str());
-    if(aValue != 0) {
+    if (aValue != 0) {
       // very probably ok
       aMinValue = aValue;
     }
@@ -79,6 +79,5 @@ bool GeomValidators_Positive::isValid(const AttributePtr& theAttribute,
       return false;
     }
   }
-
   return true;
 }