From 03152401129bf0beec3be96aed6564a15cc63dd5 Mon Sep 17 00:00:00 2001 From: Jonathan Olson Date: Wed, 25 Jul 2018 03:28:13 -0600 Subject: [PATCH] Alignment fix for https://github.com/phetsims/joist/issues/470 --- js/HomeScreenView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/HomeScreenView.js b/js/HomeScreenView.js index 66006a88..539dc225 100644 --- a/js/HomeScreenView.js +++ b/js/HomeScreenView.js @@ -214,7 +214,7 @@ define( function( require ) { // position the icons iconsParentNode.centerX = self.layoutBounds.width / 2; - iconsParentNode.centerY = 272; + iconsParentNode.top = self.layoutBounds.height / 3; } ); //TODO move these Properties to LookAndFeel, see https://github.com/phetsims/joist/issues/255