From f13ee08c3f15fc9dd12f11a9413298c399d5eb08 Mon Sep 17 00:00:00 2001 From: "Zheng, Lei" Date: Fri, 9 Aug 2019 11:18:02 +0800 Subject: [PATCH] App: fix xml indentation in PropertyContainer::Save --- src/App/PropertyContainer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/App/PropertyContainer.cpp b/src/App/PropertyContainer.cpp index a11ca4febe..27098f5af6 100644 --- a/src/App/PropertyContainer.cpp +++ b/src/App/PropertyContainer.cpp @@ -272,6 +272,7 @@ void PropertyContainer::Save (Base::Writer &writer) const if(it->second->testStatus(Property::Transient) || it->second->getType() & Prop_Transient) { + writer.decInd(); writer.Stream() << "" << std::endl; continue; }