diff --git a/src/App/PropertyContainer.cpp b/src/App/PropertyContainer.cpp index d0b1bd52c9d2..a11ca4febebd 100644 --- a/src/App/PropertyContainer.cpp +++ b/src/App/PropertyContainer.cpp @@ -267,8 +267,17 @@ void PropertyContainer::Save (Base::Writer &writer) const auto status = it->second->getStatus(); if(status) writer.Stream() << "\" status=\"" << status; - writer.Stream() << "\">" << std::endl; + writer.Stream() << "\">"; + if(it->second->testStatus(Property::Transient) + || it->second->getType() & Prop_Transient) + { + writer.Stream() << "" << std::endl; + continue; + } + + writer.Stream() << std::endl; + writer.incInd(); // indentation for the actual property try {