I was hoping that I could disable the TrackballControls so that I could right click and "Save Image", but this event handler was missing the enabled check.
@@ -579,6 +579,8 @@ THREE.TrackballControls = function ( object, domElement ) {
function contextmenu( event ) {
+ if ( _this.enabled === false ) return;
+
event.preventDefault();
}