1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0026415: <TFunction_GraphNode> 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).
This commit is contained in:
abv 2016-02-01 17:33:25 +03:00 committed by bugmaster
parent fa6d1712fd
commit 6e448ab081

View File

@ -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
// ====