From 9de4d2f34d63089b5438955023f7de4dd00b002d Mon Sep 17 00:00:00 2001 From: Viktor Govako Date: Fri, 9 Feb 2024 14:45:00 -0300 Subject: [PATCH] Follow up dcd85b0e29276092f9c4de33392a43dd32380522 Signed-off-by: Viktor Govako --- map/place_page_info.cpp | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/map/place_page_info.cpp b/map/place_page_info.cpp index 38304910fb..fc01a741cf 100644 --- a/map/place_page_info.cpp +++ b/map/place_page_info.cpp @@ -68,18 +68,21 @@ void Info::SetFromFeatureType(FeatureType & ft) if (m_uiTitle != secondaryTitle) m_uiSecondaryTitle = std::move(secondaryTitle); } - else if (IsBuilding()) + else if (!m_primaryFeatureName.empty()) { - emptyTitle = m_address.empty(); - if (!emptyTitle) - m_uiTitle = m_address; - m_uiAddress.clear(); // already in main title + m_uiTitle = m_primaryFeatureName; } else { - emptyTitle = m_primaryFeatureName.empty(); - if (!emptyTitle) - m_uiTitle = m_primaryFeatureName; + if (IsBuilding()) + { + emptyTitle = m_address.empty(); + if (!emptyTitle) + m_uiTitle = m_address; + m_uiAddress.clear(); // already in main title + } + else + emptyTitle = true; } // Assign Feature's type if main title is empty.