From b8c2f65b6fbfcd25d6c404ab0276efa4e32e4ff0 Mon Sep 17 00:00:00 2001 From: eap Date: Mon, 4 Apr 2005 10:49:14 +0000 Subject: [PATCH] PAL8536. SMESHGUI_doubleParameter::InitializeWidget() : allow going down to _bottom value --- src/SMESHGUI/SMESHGUI_aParameter.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/SMESHGUI/SMESHGUI_aParameter.cxx b/src/SMESHGUI/SMESHGUI_aParameter.cxx index cbd22eb3b..7ba5e20dc 100644 --- a/src/SMESHGUI/SMESHGUI_aParameter.cxx +++ b/src/SMESHGUI/SMESHGUI_aParameter.cxx @@ -115,8 +115,9 @@ void SMESHGUI_doubleParameter::InitializeWidget( QWidget* theQWidget) const { QAD_SpinBoxDbl * aSpin = dynamic_cast< QAD_SpinBoxDbl *>( theQWidget ); if ( aSpin ) { + aSpin->setPrecision( _decimals ); + aSpin->setDblPrecision( _bottom ); aSpin->setRange( _bottom, _top ); - ((QDoubleValidator*)(aSpin->validator()))->setRange( _bottom, _top, _decimals ); aSpin->setValue( _initValue ); aSpin->setLineStep( _step ); } -- 2.39.2