Merge pull request #2258 from ZappoMan/bugfixes

remove space bar behavior from editrVoxels.js
This commit is contained in:
Andrzej Kapolka 2014-03-10 18:04:00 -07:00
commit 52a831d3f5

View file

@ -927,13 +927,6 @@ function keyPressEvent(event) {
}
}
// do this even if not in edit tools
if (event.text == " ") {
// Reset my orientation!
var orientation = { x:0, y:0, z:0, w:1 };
Camera.setOrientation(orientation);
MyAvatar.orientation = orientation;
}
trackKeyPressEvent(event); // used by preview support
}