mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 03:37:49 +02:00
Merge pull request #13073 from ctrlaltdavid/21861
Fix entity not highlighted in list after creating or undoing delete
This commit is contained in:
commit
49dbc73cd5
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ EntityListTool = function(opts) {
|
||||||
|
|
||||||
var selectedIDs = [];
|
var selectedIDs = [];
|
||||||
for (var j = 0; j < selectionManager.selections.length; j++) {
|
for (var j = 0; j < selectionManager.selections.length; j++) {
|
||||||
selectedIDs.push(selectionManager.selections[j].id);
|
selectedIDs.push(selectionManager.selections[j]);
|
||||||
}
|
}
|
||||||
|
|
||||||
var data = {
|
var data = {
|
||||||
|
|
Loading…
Reference in a new issue