]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
Fix IPAL18996(QT4 porting: crash creationg the fillet).
authorakl <akl@opencascade.com>
Sat, 7 Jun 2008 07:58:06 +0000 (07:58 +0000)
committerakl <akl@opencascade.com>
Sat, 7 Jun 2008 07:58:06 +0000 (07:58 +0000)
src/GEOMBase/GEOMBase_Skeleton.cxx

index 34538ae90b548c6750f2b6b4f35ce91231d94b4b..1fed4e13ba266a72735162a5204903774ebf7753 100644 (file)
@@ -133,9 +133,10 @@ void GEOMBase_Skeleton::initSpinBox( QDoubleSpinBox* spinBox,
                                     double min,  double max, 
                                     double step, int decimals )
 {
+  spinBox->setDecimals( decimals ); // it's necessary to set decimals before the range setting,
+                                    // by default Qt rounds boundaries to 2 decimals at setRange
   spinBox->setRange( min, max );
   spinBox->setSingleStep( step );
-  spinBox->setDecimals( decimals );
 }
 
 //=================================================================================