From e3d63663a99255086d3eb0cca3b05f6541b8a769 Mon Sep 17 00:00:00 2001 From: tatiana-yan Date: Fri, 31 Jul 2020 14:58:55 +0300 Subject: [PATCH] [editor] Fix International/Alternative/Old name load for edited feature. --- editor/xml_feature.hpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/editor/xml_feature.hpp b/editor/xml_feature.hpp index 9b98f011e8..6f96bf9d96 100644 --- a/editor/xml_feature.hpp +++ b/editor/xml_feature.hpp @@ -124,6 +124,12 @@ public: func(key.substr(kPrefixLen), tag.node().attribute("v").value()); else if (key == kDefaultName) func(kDefaultLang, tag.node().attribute("v").value()); + else if (key == kIntlName) + func(kIntlLang, tag.node().attribute("v").value()); + else if (key == kAltName) + func(kAltLang, tag.node().attribute("v").value()); + else if (key == kOldName) + func(kOldLang, tag.node().attribute("v").value()); } }