diff options
Diffstat (limited to 'src/nodetree.cc')
-rw-r--r-- | src/nodetree.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/nodetree.cc b/src/nodetree.cc index 2043c90..38c20e1 100644 --- a/src/nodetree.cc +++ b/src/nodetree.cc @@ -53,8 +53,11 @@ std::string Node::toXML(std::string prefix) std::map<std::string, std::string>::iterator ai = data.attributes.begin(); while(ai != data.attributes.end()) { - xml += prefix + " <attribute name=\"" + xml_encode(ai->first) + "\">" - + xml_encode(ai->second) + "</attribute>\n"; + if(ai->first != "dragged") // Do not persist 'dragged' attribute + { + xml += prefix + " <attribute name=\"" + xml_encode(ai->first) + "\">" + + xml_encode(ai->second) + "</attribute>\n"; + } ai++; } xml += prefix + " </attributes>\n"; |