forked from organicmaps/organicmaps
Metadata was serialized to int8_t after refactoring, instead of enum values.
This commit is contained in:
parent
7cc80be7ec
commit
f6a3b8254b
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ editor::XMLFeature FeatureType::ToXML() const
|
|||
|
||||
for (auto const type : m_metadata.GetPresentTypes())
|
||||
{
|
||||
auto const attributeName = DebugPrint(type);
|
||||
auto const attributeName = DebugPrint(static_cast<Metadata::EType>(type));
|
||||
feature.SetTagValue(attributeName, m_metadata.Get(type));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue