From 76b14a88cb4c58bb6f4c98abd3719f8f0aa98cf6 Mon Sep 17 00:00:00 2001 From: Sam Reid Date: Tue, 11 Oct 2022 20:53:13 -0600 Subject: [PATCH] Add Property suffix, see https://github.com/phetsims/chipper/issues/1335 --- js/common/view/CAVPlotNode.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/common/view/CAVPlotNode.ts b/js/common/view/CAVPlotNode.ts index 1d1c2279..9db39db1 100644 --- a/js/common/view/CAVPlotNode.ts +++ b/js/common/view/CAVPlotNode.ts @@ -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( ( 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