Salome HOME
[bos #26534] EDF 24265 - Problem of recover in TUI
[modules/shaper.git] / src / ModelHighAPI / ModelHighAPI_Reference.cpp
index 3d4df7a1019b39897bd68af475fbd438aff65243..b381d4fd761901bd9afe07eca599de97aa06f256 100644 (file)
@@ -41,6 +41,11 @@ ModelHighAPI_Reference::ModelHighAPI_Reference(
   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());
+    }
   }
 }