From 2f62477c15ecdce9f1945a791a708260e997d337 Mon Sep 17 00:00:00 2001 From: eap Date: Mon, 4 Apr 2005 12:16:55 +0000 Subject: [PATCH] PAL8536. In SMESHGUI_doubleParameter::InitializeWidget() allow going down to _bottom --- 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.30.2