summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2015-05-03 20:31:50 -0300
committerJuan Linietsky <reduzio@gmail.com>2015-05-03 20:31:50 -0300
commit04fb3402c59d6d55435d4eb83eda23707b5ddf9a (patch)
tree6c4c6380567249156bf0501663e942fb1f18c7f1
parent767f71a35e76a0848f6c3e7ba2b53a1be921c8f4 (diff)
-Make sure properties are exported the way they should in xml, fixes #1799
-rw-r--r--core/io/resource_format_xml.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/io/resource_format_xml.cpp b/core/io/resource_format_xml.cpp
index 5922d83907..4771c31de2 100644
--- a/core/io/resource_format_xml.cpp
+++ b/core/io/resource_format_xml.cpp
@@ -2563,7 +2563,7 @@ Error ResourceFormatSaverXMLInstance::save(const String &p_path,const RES& p_res
List<PropertyInfo> property_list;
res->get_property_list(&property_list);
- property_list.sort();
+// property_list.sort();
for(List<PropertyInfo>::Element *PE = property_list.front();PE;PE=PE->next()) {