removed undefined event checks in scaling

This commit is contained in:
David Back 2018-03-07 19:34:08 -08:00
parent 9681f0eb77
commit 554c37d14b

View file

@ -1976,10 +1976,6 @@ SelectionDisplay = (function() {
};
var onMove = function(event) {
if (event.x === undefined || event.y === undefined) {
return;
}
var proportional = (spaceMode === SPACE_WORLD) || directionEnum === STRETCH_DIRECTION.ALL;
var position, dimensions, rotation;