From 88100d913897ad13994eff776e54e594067b865f Mon Sep 17 00:00:00 2001 From: jfa Date: Fri, 31 Oct 2008 14:10:18 +0000 Subject: [PATCH] Bug 0020029: EDF 845 GEOM: impossible to set a negative angle for the revolution in gui. --- src/GenerationGUI/GenerationGUI_RevolDlg.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GenerationGUI/GenerationGUI_RevolDlg.cxx b/src/GenerationGUI/GenerationGUI_RevolDlg.cxx index 0c4a91703..f8ceba68a 100644 --- a/src/GenerationGUI/GenerationGUI_RevolDlg.cxx +++ b/src/GenerationGUI/GenerationGUI_RevolDlg.cxx @@ -109,7 +109,7 @@ void GenerationGUI_RevolDlg::Init() { // min, max, step and decimals for spin boxes & initial values double SpecificStep = 5; - initSpinBox(GroupPoints->SpinBox_DX, 0.0, 360.0, SpecificStep, 3); // VSR: TODO: DBL_DIGITS_DISPLAY + initSpinBox(GroupPoints->SpinBox_DX, -360.0, 360.0, SpecificStep, 3); // VSR: TODO: DBL_DIGITS_DISPLAY GroupPoints->SpinBox_DX->setValue(45.0); // init variables -- 2.39.2