Skip to content

Commit

Permalink
slider labels should not be clickable, see issue #70
Browse files Browse the repository at this point in the history
  • Loading branch information
aadish committed Mar 18, 2016
1 parent 702e83d commit 52676cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/gravity-force-lab/view/MassControl.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ define( function( require ) {
thumbFillHighlighted: thumbColor
} );

var tickLabelOptions = { font: new PhetFont( 14 ) };
var tickLabelOptions = { font: new PhetFont( 14 ), pickable: false };
// major ticks
slider.addMajorTick( massRange.min, new Text( massRange.min, tickLabelOptions ) );
slider.addMajorTick( massRange.max, new Text( massRange.max, tickLabelOptions ) );
Expand Down

0 comments on commit 52676cd

Please sign in to comment.