From dd478f1a6300db3cb98f0066b0ae677f777abd42 Mon Sep 17 00:00:00 2001 From: ouv Date: Tue, 15 Apr 2008 08:09:54 +0000 Subject: [PATCH] Bug IPAL19553 - Qt4 porting: "Glue faces" dialog: 3 superfluous zeros in tolerance --- src/RepairGUI/RepairGUI_GlueDlg.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/RepairGUI/RepairGUI_GlueDlg.cxx b/src/RepairGUI/RepairGUI_GlueDlg.cxx index 2edd2a186..e39be96ad 100644 --- a/src/RepairGUI/RepairGUI_GlueDlg.cxx +++ b/src/RepairGUI/RepairGUI_GlueDlg.cxx @@ -82,7 +82,7 @@ RepairGUI_GlueDlg::RepairGUI_GlueDlg( GeometryGUI* theGeometryGUI, QWidget* pare QLabel* aTolLab = new QLabel( tr( "GEOM_TOLERANCE" ), GroupPoints->Box ); myTolEdt = new QDoubleSpinBox( GroupPoints->Box ); - initSpinBox( myTolEdt, 0, 100, 1e-7, 10 ); + initSpinBox( myTolEdt, 0, 100, 1e-7, 7 ); myTolEdt->setValue( DEFAULT_TOLERANCE_VALUE ); QGridLayout* boxLayout = new QGridLayout( GroupPoints->Box ); @@ -99,7 +99,7 @@ RepairGUI_GlueDlg::RepairGUI_GlueDlg( GeometryGUI* theGeometryGUI, QWidget* pare QLabel* aTolLab2 = new QLabel( tr( "GEOM_TOLERANCE" ), GroupPoints2->Box ); myTolEdt2 = new QDoubleSpinBox( GroupPoints2->Box ); - initSpinBox( myTolEdt2, 0, 100, 1e-7, 10 ); + initSpinBox( myTolEdt2, 0, 100, 1e-7, 7 ); myTolEdt2->setValue( DEFAULT_TOLERANCE_VALUE ); myDetectBtn = new QPushButton( tr( "GEOM_DETECT" ) + QString( " [%1]" ).arg( tr( "GLUE_FACES" ) ), -- 2.39.2