mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 04:44:11 +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) {
|
||||
let selection = [];
|
||||
selection = [];
|
||||
let toItem = Math.max(previousItemFound, clickedItemFound);
|
||||
for (let i = Math.min(previousItemFound, clickedItemFound); i <= toItem; i++) {
|
||||
selection.push(visibleEntities[i].id);
|
||||
|
|
Loading…
Reference in a new issue