From 07f5d7c06aad9d2abe0fededd03d38a43515d18d Mon Sep 17 00:00:00 2001 From: yairm210 Date: Sun, 14 Jul 2024 09:51:17 +0300 Subject: [PATCH] Resolved #11951 - icons in Wonder location "near city" for cities with same name as nations --- .../com/unciv/ui/screens/overviewscreen/WonderOverviewTab.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/com/unciv/ui/screens/overviewscreen/WonderOverviewTab.kt b/core/src/com/unciv/ui/screens/overviewscreen/WonderOverviewTab.kt index 99e219163c..afbc32719a 100644 --- a/core/src/com/unciv/ui/screens/overviewscreen/WonderOverviewTab.kt +++ b/core/src/com/unciv/ui/screens/overviewscreen/WonderOverviewTab.kt @@ -76,7 +76,7 @@ class WonderOverviewTab( add(wonder.getStatusColumn().toLabel()) val locationText = wonder.getLocationColumn() if (locationText.isNotEmpty()) { - val locationLabel = locationText.toLabel() + val locationLabel = locationText.toLabel(hideIcons = true) if (wonder.location != null) locationLabel.onClick{ val worldScreen = UncivGame.Current.resetToWorldScreen()