mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-11 13:52:03 +02:00
Fix for Issue #696
This fixes a refresh of the FILE value in the Create App Entity list when updating the imageURL of an Image Entity. (It was missing in the condition that checks to add to the refresh of the list.) This solves the issue #696.
This commit is contained in:
parent
44cc060200
commit
6337e84894
1 changed files with 2 additions and 2 deletions
|
@ -2443,8 +2443,8 @@ var PropertiesTool = function (opts) {
|
|||
Entities.editEntity(entityID, properties);
|
||||
});
|
||||
|
||||
if (properties.name !== undefined || properties.modelURL !== undefined || properties.materialURL !== undefined ||
|
||||
properties.visible !== undefined || properties.locked !== undefined) {
|
||||
if (properties.name !== undefined || properties.modelURL !== undefined || properties.imageURL !== undefined ||
|
||||
properties.materialURL !== undefined || properties.visible !== undefined || properties.locked !== undefined) {
|
||||
|
||||
sendListUpdate = true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue