From f26b838ac3a93a0014dd3646a8a7e9599d40f9f0 Mon Sep 17 00:00:00 2001 From: samreid Date: Tue, 15 Oct 2019 09:10:06 -0600 Subject: [PATCH] Remove faulty > --- js/common/view/Perspective3DNode.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/common/view/Perspective3DNode.js b/js/common/view/Perspective3DNode.js index c1f590d8..b7deb862 100644 --- a/js/common/view/Perspective3DNode.js +++ b/js/common/view/Perspective3DNode.js @@ -134,7 +134,7 @@ define( require => { this.upNode.visible = this.isRotatingProperty.get(); // Position the arrow and text - if ( this.upNode.visible > 0 ) { + if ( this.upNode.visible ) { this.upNode.setMatrix( Matrix3.scaling( 1, rotationAmount ) ); this.upNode.centerY = this.sideFacePath.shape.bounds.centerY; this.upNode.right = this.sideFacePath.shape.bounds.right - 80;