@@ -122,7 +122,7 @@ export class CityDisplayInfo extends ActorGroup {
122122 private initializeStatsWindow ( ) {
123123 const x = 0 ;
124124 const y = 21 ;
125- const width = 250 ;
125+ const width = 260 ;
126126 const height = 300 ;
127127 this . addActor (
128128 new Actor ( {
@@ -142,14 +142,14 @@ export class CityDisplayInfo extends ActorGroup {
142142 fontColor : "white"
143143 } ) ;
144144 nameLabel . conformSize ( ) . then ( ( ) => {
145- nameLabel . setPosition ( 0 + 250 / 2 - nameLabel . getWidth ( ) / 2 , 30 ) ;
145+ nameLabel . setPosition ( 0 + 260 / 2 - nameLabel . getWidth ( ) / 2 , 32 ) ;
146146 this . addActor ( nameLabel ) ;
147147 } ) ;
148148
149149 const populationIcon = new Actor ( {
150150 image : Game . getInstance ( ) . getImage ( GameImage . SPRITESHEET ) ,
151151 spriteRegion : SpriteRegion . POPULATION_ICON ,
152- x : 6 ,
152+ x : 10 ,
153153 y : 52 ,
154154 width : 32 ,
155155 height : 32
@@ -181,7 +181,7 @@ export class CityDisplayInfo extends ActorGroup {
181181 const moraleIcon = new Actor ( {
182182 image : Game . getInstance ( ) . getImage ( GameImage . SPRITESHEET ) ,
183183 spriteRegion : SpriteRegion . MORALE_ICON ,
184- x : 6 ,
184+ x : 10 ,
185185 y : populationIcon . getY ( ) + 32 ,
186186 width : 32 ,
187187 height : 32
@@ -213,7 +213,7 @@ export class CityDisplayInfo extends ActorGroup {
213213 const foodIcon = new Actor ( {
214214 image : Game . getInstance ( ) . getImage ( GameImage . SPRITESHEET ) ,
215215 spriteRegion : SpriteRegion . FOOD_ICON ,
216- x : 6 ,
216+ x : 10 ,
217217 y : moraleIcon . getY ( ) + 32 ,
218218 width : 32 ,
219219 height : 32
@@ -245,7 +245,7 @@ export class CityDisplayInfo extends ActorGroup {
245245 const productionIcon = new Actor ( {
246246 image : Game . getInstance ( ) . getImage ( GameImage . SPRITESHEET ) ,
247247 spriteRegion : SpriteRegion . PRODUCTION_ICON ,
248- x : 6 ,
248+ x : 10 ,
249249 y : foodIcon . getY ( ) + 32 ,
250250 width : 32 ,
251251 height : 32
@@ -277,7 +277,7 @@ export class CityDisplayInfo extends ActorGroup {
277277 const goldIcon = new Actor ( {
278278 image : Game . getInstance ( ) . getImage ( GameImage . SPRITESHEET ) ,
279279 spriteRegion : SpriteRegion . GOLD_ICON ,
280- x : 6 ,
280+ x : 10 ,
281281 y : productionIcon . getY ( ) + 32 ,
282282 width : 32 ,
283283 height : 32
@@ -309,7 +309,7 @@ export class CityDisplayInfo extends ActorGroup {
309309 const scienceIcon = new Actor ( {
310310 image : Game . getInstance ( ) . getImage ( GameImage . SPRITESHEET ) ,
311311 spriteRegion : SpriteRegion . SCIENCE_ICON ,
312- x : 6 ,
312+ x : 10 ,
313313 y : goldIcon . getY ( ) + 32 ,
314314 width : 32 ,
315315 height : 32
@@ -341,7 +341,7 @@ export class CityDisplayInfo extends ActorGroup {
341341 const cultureIcon = new Actor ( {
342342 image : Game . getInstance ( ) . getImage ( GameImage . SPRITESHEET ) ,
343343 spriteRegion : SpriteRegion . CULTURE_ICON ,
344- x : 6 ,
344+ x : 10 ,
345345 y : scienceIcon . getY ( ) + 32 ,
346346 width : 32 ,
347347 height : 32
0 commit comments