Skip to content

Commit

Permalink
MaxWidths of panel labels reduced to prevent overlap. phetsims/masses…
Browse files Browse the repository at this point in the history
  • Loading branch information
Denz1994 committed Nov 5, 2018
1 parent 53f09c0 commit 9e05af7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/common/view/TwoSpringScreenView.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ define( function( require ) {

// Spring Constant Control Panels
var minMaxLabels = [
new Text( smallString, { font: MassesAndSpringsConstants.LABEL_FONT, maxWidth: 50 } ),
new Text( largeString, { font: MassesAndSpringsConstants.LABEL_FONT, maxWidth: 50 } )
new Text( smallString, { font: MassesAndSpringsConstants.LABEL_FONT, maxWidth: 45 } ),
new Text( largeString, { font: MassesAndSpringsConstants.LABEL_FONT, maxWidth: 45 } )
];

// @public {SpringConstantPanel}
Expand Down

0 comments on commit 9e05af7

Please sign in to comment.