X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_ResultPart.cpp;h=255f5e3802ce81352513e45182dd92b5dad70178;hb=b73fb7468bea81901dbeed8e229d742f788ec282;hp=c0c20223f6cb4dc599ff755b755e0add240da1a5;hpb=7074394f8f08413d885f63be01df6bd5007b868c;p=modules%2Fshaper.git diff --git a/src/Model/Model_ResultPart.cpp b/src/Model/Model_ResultPart.cpp index c0c20223f..255f5e380 100644 --- a/src/Model/Model_ResultPart.cpp +++ b/src/Model/Model_ResultPart.cpp @@ -54,6 +54,7 @@ void Model_ResultPart::initAttributes() data()->addAttribute(COLOR_ID(), ModelAPI_AttributeIntArray::typeId()); data()->addAttribute(BASE_REF_ID(), ModelAPI_AttributeReference::typeId()); data()->addAttribute(DEFLECTION_ID(), ModelAPI_AttributeDouble::typeId()); + data()->addAttribute(TRANSPARENCY_ID(), ModelAPI_AttributeDouble::typeId()); if (aDocRef->isInitialized() && // initialized immideately means already exist and will be loaded !Model_Application::getApplication()->hasDocument(aDocRef->docId())) @@ -62,7 +63,7 @@ void Model_ResultPart::initAttributes() std::shared_ptr Model_ResultPart::partDoc() { - if (myTrsf.get() && baseRef().get()) { // the second condition is to to #2035 + if (myTrsf.get() && baseRef().get()) { // the second condition is due to #2035 return baseRef()->partDoc(); } DocumentPtr aRes = data()->document(DOC_REF())->value(); @@ -92,8 +93,8 @@ void Model_ResultPart::activate() } if (!aDocRef->value().get()) { // create (or open) a document if it is not yet created Handle(Model_Application) anApp = Model_Application::getApplication(); - if (anApp->isLoadByDemand(data()->name())) { - anApp->loadDocument(data()->name(), aDocRef->docId()); // if it is just ne part, load may fail + if (anApp->isLoadByDemand(data()->name(), aDocRef->docId())) { + anApp->loadDocument(data()->name(), aDocRef->docId()); // if it is just new part, load fails } else { anApp->createDocument(aDocRef->docId()); } @@ -113,7 +114,7 @@ void Model_ResultPart::activate() std::shared_ptr Model_ResultPart::original() { - if (myTrsf.get() && baseRef().get()) { // the second condition is to to #2035 + if (myTrsf.get() && baseRef().get()) { // the second condition is due to #2035 return baseRef()->original(); } return std::dynamic_pointer_cast(data()->owner());