diff --git a/core/src/com/unciv/ui/overviewscreen/CityOverviewTable.kt b/core/src/com/unciv/ui/overviewscreen/CityOverviewTable.kt index 952d1f4b41..b8379abb8e 100644 --- a/core/src/com/unciv/ui/overviewscreen/CityOverviewTable.kt +++ b/core/src/com/unciv/ui/overviewscreen/CityOverviewTable.kt @@ -141,6 +141,12 @@ class CityOverviewTable(private val viewingPlayer: CivilizationInfo, private val } citiesTable.add(button) + if (city.cityConstructions.currentConstructionFromQueue.length > 0) { + citiesTable.add(ImageGetter.getConstructionImage(city.cityConstructions.currentConstructionFromQueue).surroundWithCircle(iconSize*0.8f)).padRight(paddingHorz) + } else { + citiesTable.add() + } + val cell = citiesTable.add(city.cityConstructions.getCityProductionTextForCityButton().toLabel()) constructionCells.add(cell)