[MAPSME-3524] [ios] Fixed map download dialog coloring.

This commit is contained in:
Ilya Grechuhin 2017-01-17 13:57:28 +03:00
parent a5092e03b3
commit 2add75f1d0

View file

@ -107,8 +107,12 @@ using namespace storage;
self.nodeTopOffset.priority =
hideParent ? UILayoutPriorityDefaultHigh : UILayoutPriorityDefaultLow;
if (!hideParent)
{
self.parentNode.text = @(nodeAttrs.m_topmostParentInfo[0].m_localName.c_str());
self.parentNode.textColor = [UIColor blackSecondaryText];
}
self.node.text = @(nodeAttrs.m_nodeLocalName.c_str());
self.node.textColor = [UIColor blackPrimaryText];
self.nodeSize.hidden = platform::migrate::NeedMigrate();
self.nodeSize.textColor = [UIColor blackSecondaryText];
self.nodeSize.text = formattedSize(nodeAttrs.m_mwmSize);