forked from organicmaps/organicmaps
Merge pull request #380 from kshalnev/styles_path_name
[styles] Do not draw international name for path
This commit is contained in:
commit
7696222a6c
1 changed files with 2 additions and 4 deletions
|
@ -396,11 +396,9 @@ namespace di
|
|||
|
||||
string const FeatureStyler::GetPathName() const
|
||||
{
|
||||
// Always concat names for linear features because we process only one draw rule now.
|
||||
if (m_secondaryText.empty())
|
||||
if (!m_primaryText.empty())
|
||||
return m_primaryText;
|
||||
else
|
||||
return m_primaryText + " " + m_secondaryText;
|
||||
return m_secondaryText;
|
||||
}
|
||||
|
||||
bool FeatureStyler::IsEmpty() const
|
||||
|
|
Loading…
Add table
Reference in a new issue