]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
Fix pb with minimum and maximum values of the spin box
authorvsr <vsr@opencascade.com>
Tue, 2 Sep 2008 07:28:00 +0000 (07:28 +0000)
committervsr <vsr@opencascade.com>
Tue, 2 Sep 2008 07:28:00 +0000 (07:28 +0000)
src/EntityGUI/EntityGUI_SketcherDlg.cxx

index 88dc290124d263d031c5767ac0ab87953944745a..218597fe2c59b89abf32525bdc1234b200de9429 100644 (file)
@@ -1512,9 +1512,9 @@ void EntityGUI_SketcherDlg::initSpinBox( QDoubleSpinBox* spinBox,
                                         double min,  double max,
                                         double step, int decimals )
 {
+  spinBox->setDecimals( decimals );
   spinBox->setRange( min, max );
   spinBox->setSingleStep( step );
-  spinBox->setDecimals( decimals );
 }
 
 //=================================================================================