]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
TC6.3.0:Post-Pro preferences - Gauss Points: Range valuefor min and Magnification... V6_3_1_BR V6_3_1 V6_3_1rc1 V6_3_1rc2 V6_3_1rc3 V6_3_BR20110629 V6_3_BR_20110630 before_mergefrom_V6_3_1_BR_15Jul11 before_mergefrom_V6_3_1_WIN_19Jul11 mergefrom_V6_3_1_BR_15Jul11 mergeto_V6_3_BR_15Jul11 mergeto_V6_main_15Jul11 start_V6_3_1_WIN
authorvsr <vsr@opencascade.com>
Tue, 28 Jun 2011 14:45:43 +0000 (14:45 +0000)
committervsr <vsr@opencascade.com>
Tue, 28 Jun 2011 14:45:43 +0000 (14:45 +0000)
src/VISUGUI/VisuGUI_SizeBox.cxx

index eb01fe980828994488e9464cab348168cf438c55..7343a5c7ba7813f759655b6001b4416939053e9c 100644 (file)
@@ -276,8 +276,7 @@ float VisuGUI_SizeBox::getOutsideSize() const
 
 void VisuGUI_SizeBox::setOutsideSize( float theOutsideSize )
 {
-  theOutsideSize*=100.;
-  myOutsideSizeSpinBox->setValue( ( int ) theOutsideSize );
+  myOutsideSizeSpinBox->setValue( ( int ) ( theOutsideSize * 100. + 0.5 ) );
 }
 
 float VisuGUI_SizeBox::getGeomSize() const
@@ -287,8 +286,7 @@ float VisuGUI_SizeBox::getGeomSize() const
 
 void VisuGUI_SizeBox::setGeomSize( float theGeomSize )
 {
-  theGeomSize*=100.;
-  myGeomSizeSpinBox->setValue( ( int ) theGeomSize );
+  myGeomSizeSpinBox->setValue( ( int ) ( theGeomSize * 100. + 0.5 ) );
 }
 
 float VisuGUI_SizeBox::getMinSize() const
@@ -298,8 +296,7 @@ float VisuGUI_SizeBox::getMinSize() const
 
 void VisuGUI_SizeBox::setMinSize( float theMinSize )
 {
-  theMinSize*=100.;
-  myMinSizeSpinBox->setValue( ( int ) theMinSize );
+  myMinSizeSpinBox->setValue( ( int ) ( theMinSize * 100. + 0.5 ) );
 }
 
 float VisuGUI_SizeBox::getMaxSize() const
@@ -309,8 +306,7 @@ float VisuGUI_SizeBox::getMaxSize() const
 
 void VisuGUI_SizeBox::setMaxSize( float theMaxSize )
 {
-  theMaxSize*=100.;
-  myMaxSizeSpinBox->setValue( (int) theMaxSize );
+  myMaxSizeSpinBox->setValue( (int) ( theMaxSize * 100. + 0.5 ) );
 }
 
 float VisuGUI_SizeBox::getMagnification() const
@@ -320,8 +316,7 @@ float VisuGUI_SizeBox::getMagnification() const
 
 void VisuGUI_SizeBox::setMagnification( float theMagnification )
 {
-  theMagnification*=100.;
-  myMagnificationSpinBox->setValue( (int) theMagnification );
+  myMagnificationSpinBox->setValue( (int) ( theMagnification * 100. + 0.5 ) );
 }
 
 float VisuGUI_SizeBox::getIncrement() const