]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Extend precision up to 12 symbols after comma
authorvsv <vsv@opencascade.com>
Mon, 25 Jun 2018 11:57:30 +0000 (14:57 +0300)
committervsv <vsv@opencascade.com>
Mon, 25 Jun 2018 11:57:30 +0000 (14:57 +0300)
src/ModuleBase/ModuleBase_ParamSpinBox.cpp
src/ModuleBase/ModuleBase_ParamSpinBox.h

index 992e9dd26d1636192c32c5d6e7ea6911beca5dbc..08d373d5d39d8522300b2c708d1c5d579367ca33 100644 (file)
@@ -66,7 +66,7 @@ ModuleBase_ParamSpinBox::ModuleBase_ParamSpinBox(QWidget* theParent, int thePrec
   myValidator = new QDoubleValidator(this);
   myValidator->setLocale(locale());
   myValidator->setRange(myMinimum, myMaximum);
-  myValidator->setDecimals(3);
+  myValidator->setDecimals(myPrecision);
 }
 
 void ModuleBase_ParamSpinBox::setCompletionList(QStringList& theList)
index 696bf0cd79bf4ad1e3e812587502566017bf46e7..09a10ca3cfa888e3afbea8df5c6df3a4e4ba46ee 100644 (file)
@@ -51,7 +51,7 @@ public:
    \param theParent a parent object
    \param thePrecision a precision of values display
    */
-  ModuleBase_ParamSpinBox( QWidget* theParent = 0, int thePrecision = -12 );
+  ModuleBase_ParamSpinBox( QWidget* theParent = 0, int thePrecision = 12 );
 
   /// Set list of completion strings
   void setCompletionList(QStringList&);