Take no action if Alt is pressed at mouse-down

This commit is contained in:
David Rowe 2019-07-12 21:28:44 +12:00
parent db1137fa0f
commit f2d591dbe9

View file

@ -1118,6 +1118,11 @@ SelectionDisplay = (function() {
return false;
}
// No action if the Alt key is pressed.
if (event.isAlt) {
return;
}
var pickRay = generalComputePickRay(event.x, event.y);
// TODO_Case6491: Move this out to setup just to make it once
var interactiveOverlays = getMainTabletIDs();