Skip to content

Commit

Permalink
convert instrumented pickableProperty to inputEnabledProperty, phetsi…
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Mar 17, 2021
1 parent bf4e24f commit d99064d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class AtomicInteractionsScreenView extends ScreenView {
visible: false,
phetioReadOnly: true,
visiblePropertyOptions: { phetioReadOnly: true },
pickablePropertyPhetioInstrumented: true,
inputEnabledPropertyPhetioInstrumented: true,
enabledPropertyOptions: { phetioReadOnly: true }
} );
this.addChild( this.returnAtomButton );
Expand Down
2 changes: 1 addition & 1 deletion js/atomic-interactions/view/ParticleNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class ParticleNode extends Node {

super( {
tandem: tandem,
pickablePropertyPhetioInstrumented: true
inputEnabledPropertyPhetioInstrumented: true
} );

// @private
Expand Down
2 changes: 1 addition & 1 deletion js/atomic-interactions/view/PositionMarker.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class PositionMarker extends Node {
super( {
children: [ haloNode, sphereNode ],
tandem: options.tandem,
pickablePropertyPhetioInstrumented: true
inputEnabledPropertyPhetioInstrumented: true
} );

// @private
Expand Down
2 changes: 1 addition & 1 deletion js/common/view/ParticleContainerNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class ParticleContainerNode extends Node {
// root of the lid node
const lidNode = new Node( {
tandem: options.tandem.createTandem( 'lidNode' ),
pickablePropertyPhetioInstrumented: true,
inputEnabledPropertyPhetioInstrumented: true,
visiblePropertyOptions: { phetioReadOnly: true }
} );
postParticleLayer.addChild( lidNode );
Expand Down

0 comments on commit d99064d

Please sign in to comment.