From 6e448ab08126b00486bcb1de00596cf3a9640e30 Mon Sep 17 00:00:00 2001 From: abv Date: Mon, 1 Feb 2016 17:33:25 +0300 Subject: [PATCH] 0026415: XML should not break line in the middle of text. Line break between "previous" and "next" ids is replaced by additional spaces (these facilitate visual separation of the two sub-lists). --- src/XmlMFunction/XmlMFunction_GraphNodeDriver.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/XmlMFunction/XmlMFunction_GraphNodeDriver.cxx b/src/XmlMFunction/XmlMFunction_GraphNodeDriver.cxx index 60675819fb..883e4b2b69 100644 --- a/src/XmlMFunction/XmlMFunction_GraphNodeDriver.cxx +++ b/src/XmlMFunction/XmlMFunction_GraphNodeDriver.cxx @@ -184,7 +184,10 @@ void XmlMFunction_GraphNodeDriver::Paste (const Handle(TDF_Attribute)& theSource aValueStr += TCollection_AsciiString(ID); aValueStr += ' '; } - aValueStr += "\n"; + + // add more spaces between "previous" and "next" ids to make them easily + // recognizable for human + aValueStr += " "; // Next // ====