From bb1f5ab1e0c1e0a2e91076c73294ba72581d83b2 Mon Sep 17 00:00:00 2001 From: adam Date: Thu, 22 Jul 2010 13:42:04 +0000 Subject: [PATCH] Authorize smaller value for growth rate in GUI --- src/GUI/NETGENPluginGUI_HypothesisCreator.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GUI/NETGENPluginGUI_HypothesisCreator.cxx b/src/GUI/NETGENPluginGUI_HypothesisCreator.cxx index 930a5d3..5b530c6 100644 --- a/src/GUI/NETGENPluginGUI_HypothesisCreator.cxx +++ b/src/GUI/NETGENPluginGUI_HypothesisCreator.cxx @@ -165,7 +165,7 @@ QFrame* NETGENPluginGUI_HypothesisCreator::buildFrame() aGroupLayout->addWidget( new QLabel( tr( "NETGEN_GROWTH_RATE" ), GroupC1 ), row, 0 ); myGrowthRate = new SMESHGUI_SpinBox( GroupC1 ); - myGrowthRate->RangeStepAndValidator( .1, 10., .1, "parametric_precision" ); + myGrowthRate->RangeStepAndValidator( .0001, 10., .1, "parametric_precision" ); aGroupLayout->addWidget( myGrowthRate, row, 1 ); row++;