PartDesign: update body management commands according to the changes in body paradigms

This commit is contained in:
Alexander Golubev
2015-08-07 15:33:15 +03:00
committed by Stefan Tröger
parent 2e27001382
commit 5459768c3f
3 changed files with 169 additions and 90 deletions

View File

@@ -111,8 +111,9 @@ void Body::onChanged(const App::Property *prop)
short Body::mustExecute() const
{
if ( Tip.isTouched() ||
BaseFeature.isTouched() )
BaseFeature.isTouched() ) {
return 1;
}
return Part::BodyBase::mustExecute();
}