Skip to content

Commit

Permalink
prevent overlap of ToolsComboBox and smiley face #138
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelzoom committed Jan 11, 2019
1 parent 7d030bf commit d66c8fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/introduction/view/ToolsComboBox.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ define( function( require ) {
options.labelNode = new Text( toolsString, {
font: FONT,
fontWeight: 'bold',
maxWidth: 200
maxWidth: 100
} );

var items = [
// 'None'
ComboBox.createItem( new Text( noneString, { font: FONT, maxWidth: 200 } ), BalancedRepresentation.NONE ),
ComboBox.createItem( new Text( noneString, { font: FONT, maxWidth: 100 } ), BalancedRepresentation.NONE ),
// scales
ComboBox.createItem( new Image( scalesImage, { scale: 0.1875 } ), BalancedRepresentation.BALANCE_SCALES ),
// bar charts
Expand Down

0 comments on commit d66c8fe

Please sign in to comment.