+ fixes #0001791: Counterbores do not follow when hole is moved

This commit is contained in:
wmayer 2015-01-12 00:55:56 +01:00
parent 351b9d7425
commit e16305cb83

View File

@ -2433,6 +2433,9 @@ void SketchObject::onChanged(const App::Property* prop)
}
}
}
#if 0
// For now do not delete anything (#0001791). When changing the support
// face it might be better to check which external geometries can be kept.
else if (prop == &Support) {
// make sure not to change anything while restoring this object
if (!isRestoring()) {
@ -2443,6 +2446,7 @@ void SketchObject::onChanged(const App::Property* prop)
}
}
}
#endif
Part::Part2DObject::onChanged(prop);
}