From: Christophe Bourcier Date: Tue, 12 Jul 2016 08:13:56 +0000 (+0200) Subject: Decrease the gradation limit to 1 to be able to have finer meshes X-Git-Tag: V8_1_0b1~4^2~1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=refs%2Fheads%2Fcbr%2FCEA_1537_remove_deprecated_precad;p=plugins%2Fblsurfplugin.git Decrease the gradation limit to 1 to be able to have finer meshes --- diff --git a/src/GUI/BLSURFPluginGUI_StdWidget.cxx b/src/GUI/BLSURFPluginGUI_StdWidget.cxx index ec8ca2c..b17ad7d 100644 --- a/src/GUI/BLSURFPluginGUI_StdWidget.cxx +++ b/src/GUI/BLSURFPluginGUI_StdWidget.cxx @@ -43,7 +43,7 @@ BLSURFPluginGUI_StdWidget::BLSURFPluginGUI_StdWidget( QWidget* parent, Qt::Windo myPhySize->RangeStepAndValidator(0, COORD_MAX, 10.0, "length_precision"); myMinSize->RangeStepAndValidator(0, COORD_MAX, 10.0, "length_precision"); myMaxSize->RangeStepAndValidator(0, COORD_MAX, 10.0, "length_precision"); - myGradation->RangeStepAndValidator(1.1, COORD_MAX, 0.1, "length_precision"); + myGradation->RangeStepAndValidator(1.0, COORD_MAX, 0.1, "length_precision"); myAngleMesh->RangeStepAndValidator(0, 90, 0.5, "angular_precision"); myChordalError->RangeStepAndValidator(0, COORD_MAX, 0.1, "length_precision"); myAnisotropicRatio->RangeStepAndValidator(0, COORD_MAX, 0.1, "length_precision");