mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-15 13:07:32 +02:00
Fix entity "unlock" edits not being propagated to clients
The lastEditedBy property was not being updated when changing the locked property of entities from true to false.
This commit is contained in:
parent
29b966ee04
commit
b9fffc10f8
1 changed files with 1 additions and 0 deletions
|
@ -182,6 +182,7 @@ bool EntityTree::updateEntityWithElement(EntityItemPointer entity, const EntityI
|
|||
if (!wantsLocked) {
|
||||
EntityItemProperties tempProperties;
|
||||
tempProperties.setLocked(wantsLocked);
|
||||
tempProperties.setLastEdited(properties.getLastEdited());
|
||||
|
||||
bool success;
|
||||
AACube queryCube = entity->getQueryAACube(success);
|
||||
|
|
Loading…
Reference in a new issue