PAL8536. SMESHGUI_doubleParameter::InitializeWidget() : allow going down to _bottom value

This commit is contained in:
eap 2005-04-04 10:49:14 +00:00
parent ebe9f34644
commit b8c2f65b6f

View File

@ -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 );
}