Commit ecb8bd29487a23cf1d2bf4c5a29e73603582f170

  • avatar
  • flare576
  • Wed Oct 07 07:02:44 CEST 2009
Slight adjustment to left-margin to improve right-side text.
  
3030 calculateAppPosition: function(appIndex) {
3131 return {
3232- left: (((appIndex % this.kAppsPerRow) * this.kAppWidth) + this.kPageMargin),
33+ left: (((appIndex % this.kAppsPerRow) * this.kAppWidth) - 18),
33+ left: (((appIndex % this.kAppsPerRow) * this.kAppWidth) - 22),
3434 top: (Math.floor(appIndex/this.kAppsPerRow) * this.kAppHeight)
3535 };
3636 },