Skip to content

Commit

Permalink
Add Property suffix, see phetsims/chipper#1335
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Oct 12, 2022
1 parent b06c41a commit 76b14a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/common/view/CAVPlotNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ class CAVPlotNode extends Node {
backgroundNode.addChild( this.dotLayer );

// TODO: This overlaps with draggingEnabled
const dotPlotObjectNodesDraggable = new BooleanProperty( false );
const dotPlotObjectNodesDraggableProperty = new BooleanProperty( false );

const dotNodeGroup = new PhetioGroup<CAVObjectNode, [ CAVObject ]>( ( tandem, casObject ) => {
return new CAVObjectNode( casObject, model.isShowingTopMedianProperty, modelViewTransform, dotPlotObjectNodesDraggable, {
return new CAVObjectNode( casObject, model.isShowingTopMedianProperty, modelViewTransform, dotPlotObjectNodesDraggableProperty, {
objectViewType: CAVObjectType.DOT,
draggingEnabled: false,
tandem: tandem
Expand Down

0 comments on commit 76b14a8

Please sign in to comment.