mirror of
https://github.com/overte-org/overte.git
synced 2025-04-22 23:53:48 +02:00
Merge pull request #16037 from huffman/fix/orbit-duplicate
BUGZ-1184: Fix create duplication key conflicting with camera orbit
This commit is contained in:
commit
9b4c1dbe0f
1 changed files with 1 additions and 1 deletions
|
@ -355,7 +355,7 @@ CameraManager = function() {
|
|||
return;
|
||||
}
|
||||
|
||||
if (event.isRightButton || (event.isLeftButton && event.isControl && !event.isShifted)) {
|
||||
if (event.isRightButton || (event.isLeftButton && event.isAlt && !event.isShifted)) {
|
||||
that.mode = MODE_ORBIT;
|
||||
} else if (event.isMiddleButton || (event.isLeftButton && event.isControl && event.isShifted)) {
|
||||
that.mode = MODE_PAN;
|
||||
|
|
Loading…
Reference in a new issue