INT PAL 53459: Extrusion along path

This commit is contained in:
imn 2016-08-29 19:12:22 +03:00
parent b11dda6c23
commit 511de736b0

View File

@ -353,6 +353,7 @@ void GenerationGUI_PipeDlg::SelectionIntoArgument()
if ( myPath ) { if ( myPath ) {
QString aName = GEOMBase::GetName( myPath.get() ); QString aName = GEOMBase::GetName( myPath.get() );
myEditCurrentArgument->setText( aName ); myEditCurrentArgument->setText( aName );
GroupMakePoints->LineEdit3->setText( aName );
if ( getConstructorId() == 1 && !myVec ) if ( getConstructorId() == 1 && !myVec )
GroupPoints->PushButton3->click(); GroupPoints->PushButton3->click();
else if ( myBaseObjects.isEmpty() ) else if ( myBaseObjects.isEmpty() )
@ -397,6 +398,7 @@ void GenerationGUI_PipeDlg::SelectionIntoArgument()
if ( myPath ) { if ( myPath ) {
QString aName = GEOMBase::GetName( myPath.get() ); QString aName = GEOMBase::GetName( myPath.get() );
myEditCurrentArgument->setText( aName ); myEditCurrentArgument->setText( aName );
GroupPoints->LineEdit2->setText( aName );
} }
updateGenGroup(); updateGenGroup();
} }