PartDesign: Ignore errors due to object misconfiguration in previews
This adds ignoring catch to the updatePreview method of ViewProviderTransformed so it does not report issues that happen because recompute takes place on object that is not yet fully configured.
This commit is contained in:
committed by
Chris Hennes
parent
f99a6b3cbf
commit
4145011938
@@ -129,6 +129,8 @@ void ViewProviderTransformed::updatePreview()
|
||||
pcPreviewRoot->addChild(sep);
|
||||
}
|
||||
}
|
||||
} catch (const Base::ValueError&) {
|
||||
// no-op - ignore misconfigured objects
|
||||
} catch (const Base::Exception& e) {
|
||||
e.reportException();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user