From: vsv Date: Wed, 7 Sep 2016 14:35:38 +0000 (+0300) Subject: Issue #1736: Set step of deviation X-Git-Tag: V_2.5.0~17 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=5db465df99178428ea62b415b536559e5aa3ba07;p=modules%2Fshaper.git Issue #1736: Set step of deviation --- diff --git a/src/XGUI/XGUI_DeflectionDialog.cpp b/src/XGUI/XGUI_DeflectionDialog.cpp index 158fdab99..4ce9dcfd6 100755 --- a/src/XGUI/XGUI_DeflectionDialog.cpp +++ b/src/XGUI/XGUI_DeflectionDialog.cpp @@ -25,6 +25,7 @@ XGUI_DeflectionDialog::XGUI_DeflectionDialog(QWidget* theParent) myDeflection = new ModuleBase_DoubleSpinBox(this); myDeflection->setDecimals(12); myDeflection->setRange(0, 1); + myDeflection->setSingleStep(0.001); aLay->addWidget(new QLabel("Deviation", this), 0, 0); aLay->addWidget(myDeflection, 0, 1);