mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 02:23:57 +02:00
Merge pull request #3689 from huffman/fix-edit-entities-arrow
Fix issue with arrow keys moving objects when edit mode off
This commit is contained in:
commit
51531e1fb5
1 changed files with 1 additions and 1 deletions
|
@ -715,7 +715,7 @@ Controller.keyReleaseEvent.connect(function (event) {
|
|||
if (isActive) {
|
||||
cameraManager.enable();
|
||||
}
|
||||
} else {
|
||||
} else if (isActive) {
|
||||
var delta = null;
|
||||
|
||||
if (event.text == 'UP') {
|
||||
|
|
Loading…
Reference in a new issue