mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 04:48:54 +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) {
|
if (isActive) {
|
||||||
cameraManager.enable();
|
cameraManager.enable();
|
||||||
}
|
}
|
||||||
} else {
|
} else if (isActive) {
|
||||||
var delta = null;
|
var delta = null;
|
||||||
|
|
||||||
if (event.text == 'UP') {
|
if (event.text == 'UP') {
|
||||||
|
|
Loading…
Reference in a new issue