mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-15 01:58:36 +05:00
Fix pb with default value in the "Glue faces" dialog box.
This commit is contained in:
parent
270ce81685
commit
84d8f5cf5c
@ -392,7 +392,15 @@ GEOM::GEOM_IOperations_ptr RepairGUI_GlueDlg::createOperation()
|
|||||||
//=================================================================================
|
//=================================================================================
|
||||||
bool RepairGUI_GlueDlg::isValid( QString& msg )
|
bool RepairGUI_GlueDlg::isValid( QString& msg )
|
||||||
{
|
{
|
||||||
return !myObject->_is_nil() && ( IsPreview() || myTolEdt->value() > 0. );
|
double v = 0;
|
||||||
|
switch ( getConstructorId() )
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
v = myTolEdt->value(); break;
|
||||||
|
case 1:
|
||||||
|
v = myTolEdt2->value(); break;
|
||||||
|
}
|
||||||
|
return !myObject->_is_nil() && ( IsPreview() || v > 0. );
|
||||||
}
|
}
|
||||||
|
|
||||||
//=================================================================================
|
//=================================================================================
|
||||||
@ -409,7 +417,7 @@ bool RepairGUI_GlueDlg::execute( ObjectList& objects )
|
|||||||
case 0:
|
case 0:
|
||||||
{
|
{
|
||||||
GEOM::GEOM_Object_var anObj = GEOM::GEOM_IShapesOperations::_narrow
|
GEOM::GEOM_Object_var anObj = GEOM::GEOM_IShapesOperations::_narrow
|
||||||
( getOperation() )->MakeGlueFaces( myObject, myTolEdt2->value(), true );
|
( getOperation() )->MakeGlueFaces( myObject, myTolEdt->value(), true );
|
||||||
aResult = !anObj->_is_nil();
|
aResult = !anObj->_is_nil();
|
||||||
if ( aResult )
|
if ( aResult )
|
||||||
objects.push_back( anObj._retn() );
|
objects.push_back( anObj._retn() );
|
||||||
|
Loading…
Reference in New Issue
Block a user