diff --git a/js/concentration/view/ConcentrationMeterNode.js b/js/concentration/view/ConcentrationMeterNode.js index d7e56c6f..e3abfb89 100644 --- a/js/concentration/view/ConcentrationMeterNode.js +++ b/js/concentration/view/ConcentrationMeterNode.js @@ -107,10 +107,10 @@ class ConcentrationMeterNode extends Node { else { solution.percentConcentrationProperty.link( updateValue ); } - solutionNode.on( 'bounds', updateValue ); - stockSolutionNode.on( 'bounds', updateValue ); - solventFluidNode.on( 'bounds', updateValue ); - drainFluidNode.on( 'bounds', updateValue ); + solutionNode.boundsProperty.lazyLink( updateValue ); + stockSolutionNode.boundsProperty.lazyLink( updateValue ); + solventFluidNode.boundsProperty.lazyLink( updateValue ); + drainFluidNode.boundsProperty.lazyLink( updateValue ); } }