Browse Source

OrthographicTrackballControls: set changed flag on reset.

Max Smolens 10 years ago
parent
commit
a852ae6958
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/js/controls/OrthographicTrackballControls.js

+ 1 - 1
examples/js/controls/OrthographicTrackballControls.js

@@ -366,7 +366,7 @@ THREE.OrthographicTrackballControls = function ( object, domElement ) {
 
 		_this.dispatchEvent( changeEvent );
 
-		_changed = false;
+		_changed = true;
 
 	};