]> SALOME platform Git repositories - plugins/blsurfplugin.git/commitdiff
Salome HOME
Regression of SALOME_TESTS/Grids/smesh/bugs_16/S9
authoreap <eap@opencascade.com>
Tue, 30 Aug 2016 15:54:17 +0000 (18:54 +0300)
committereap <eap@opencascade.com>
Tue, 30 Aug 2016 15:54:17 +0000 (18:54 +0300)
src/BLSURFPlugin/BLSURFPlugin_Hypothesis.cxx

index be2f6c70d67f95a22f6bd4e34bd0e088c21e68be..386d726ef0e95b089cb5930ad53ccde8ad084e7b 100644 (file)
@@ -324,8 +324,8 @@ void BLSURFPlugin_Hypothesis::SetUseGradation(bool theVal) {
 
 //=============================================================================
 void BLSURFPlugin_Hypothesis::SetGradation(double theVal) {
+  _useGradation = ( theVal > 0 );
   if (theVal != _gradation) {
-    _useGradation = ( theVal > 0 );
     _gradation = theVal;
     NotifySubMeshesHypothesisModification();
   }
@@ -341,8 +341,8 @@ void BLSURFPlugin_Hypothesis::SetUseVolumeGradation(bool theVal) {
 
 //=============================================================================
 void BLSURFPlugin_Hypothesis::SetVolumeGradation(double theVal) {
+  _useVolumeGradation = ( theVal > 0 );
   if (theVal != _volumeGradation) {
-    _useVolumeGradation = ( theVal > 0 );
     _volumeGradation = theVal;
     NotifySubMeshesHypothesisModification();
   }