const bool theRecoverCompound)
: ModelHighAPI_Interface(theFeature)
{
- if(initialize()) {
+ if (initialize()) {
std::string aMethod = theRecoverCompound ? FeaturesPlugin_Recover::METHOD_COMPOUND()
: FeaturesPlugin_Recover::METHOD_DEFAULT();
fillAttribute(aMethod, theFeature->string(FeaturesPlugin_Recover::METHOD()));
- setBaseFeature(theBaseFeature);
+ fillAttribute(theBaseFeature.feature(), mybaseFeature);
setRecoveredList(theRecoveredList);
}
}
if (!myObject) {
theValue->execute(true);
myObject = std::shared_ptr<ModelAPI_Object>(theValue->defaultResult());
+ if (!myObject) {
+ // [bos #26534] EDF 24265 - Problem of recover in TUI
+ // Feature can have no results, store the feature itself
+ myObject = std::shared_ptr<ModelAPI_Object>(theValue->feature());
+ }
}
}