mirror of
https://github.com/overte-org/overte.git
synced 2025-04-14 07:47:30 +02:00
Take no action if Alt is pressed at mouse-down
This commit is contained in:
parent
db1137fa0f
commit
f2d591dbe9
1 changed files with 5 additions and 0 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue