]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
0021018: EDF 1592 GEOM: Problems with the radius input field in the Fillet 1D dialog box
authorvsr <vsr@opencascade.com>
Wed, 13 Oct 2010 13:40:41 +0000 (13:40 +0000)
committervsr <vsr@opencascade.com>
Wed, 13 Oct 2010 13:40:41 +0000 (13:40 +0000)
src/OperationGUI/OperationGUI_Fillet1d2dDlg.cxx

index 25a6969b89ea8c6fb386ed5a7a1865b164feb662..f7aea996cfc2c1b2f5801c87807ca56bd82a73f8 100644 (file)
@@ -370,9 +370,12 @@ GEOM::GEOM_IOperations_ptr OperationGUI_Fillet1d2dDlg::createOperation()
 // function : isValid()
 // purpose  : Verify validity of input data
 //=================================================================================
-bool OperationGUI_Fillet1d2dDlg::isValid (QString&)
+bool OperationGUI_Fillet1d2dDlg::isValid (QString& msg)
 {
-  return !myShape->_is_nil() && (myIs1D || myVertexes.Extent() > 0);
+  bool ok = !myShape->_is_nil();
+  ok = GroupVertexes->SpinBox_DX->isValid( msg, !IsPreview() ) && ok;
+  ok = (myIs1D || myVertexes.Extent() > 0) && ok;
+  return ok;
 }
 
 //=================================================================================