Tile stats are shown on a row, rather than on a column (#1946)
This commit is contained in:
parent
faa204d86f
commit
c4375ed4e8
1 changed files with 1 additions and 2 deletions
|
@ -68,8 +68,7 @@ class CityScreenTileTable(val city: CityInfo): Table(){
|
|||
statsTable.defaults().pad(2f)
|
||||
for (entry in stats.toHashMap().filterNot { it.value == 0f }) {
|
||||
statsTable.add(ImageGetter.getStatIcon(entry.key.toString())).size(20f)
|
||||
statsTable.add(entry.value.roundToInt().toString().toLabel())
|
||||
statsTable.row()
|
||||
statsTable.add(entry.value.roundToInt().toString().toLabel()).padRight(5f)
|
||||
}
|
||||
return statsTable
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue