mirror of
https://github.com/overte-org/overte.git
synced 2025-07-23 17:04:20 +02:00
remove unneeded variable
This commit is contained in:
parent
b7c098c260
commit
215e7e6da7
1 changed files with 1 additions and 1 deletions
|
@ -209,7 +209,7 @@ function loaded() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (previousItemFound !== -1 && clickedItemFound !== -1) {
|
if (previousItemFound !== -1 && clickedItemFound !== -1) {
|
||||||
let selection = [];
|
selection = [];
|
||||||
let toItem = Math.max(previousItemFound, clickedItemFound);
|
let toItem = Math.max(previousItemFound, clickedItemFound);
|
||||||
for (let i = Math.min(previousItemFound, clickedItemFound); i <= toItem; i++) {
|
for (let i = Math.min(previousItemFound, clickedItemFound); i <= toItem; i++) {
|
||||||
selection.push(visibleEntities[i].id);
|
selection.push(visibleEntities[i].id);
|
||||||
|
|
Loading…
Reference in a new issue