mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 19:59:28 +02:00
Minor code adjustments
Minor code adjustments
This commit is contained in:
parent
b633bc4a16
commit
343ded8c6f
1 changed files with 1 additions and 1 deletions
|
@ -2931,7 +2931,7 @@ function getDomainOnlyChildrenIDs(id) {
|
||||||
var properties;
|
var properties;
|
||||||
for (var i = 0; i < allChildren.length; i++) {
|
for (var i = 0; i < allChildren.length; i++) {
|
||||||
properties = Entities.getEntityProperties(allChildren[i], ["name"]);
|
properties = Entities.getEntityProperties(allChildren[i], ["name"]);
|
||||||
if (properties.name !== entityShapeVisualizerSessionName && properties.name !== undefined) {
|
if (properties.name !== undefined && properties.name !== entityShapeVisualizerSessionName) {
|
||||||
realChildren.push(allChildren[i]);
|
realChildren.push(allChildren[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue