rest of issues w/linux and mac

This commit is contained in:
David Kelly 2017-02-10 15:57:27 -07:00
parent 9891d7b7d2
commit 8a7a3926c5

View file

@ -929,7 +929,8 @@ bool EntityTree::filterProperties(EntityItemPointer& existingEntity, EntityItemP
bool accepted = true;
auto entityEditFilters = DependencyManager::get<EntityEditFilters>();
if (entityEditFilters) {
accepted = entityEditFilters->filter(existingEntity->getPosition(), propertiesIn, propertiesOut, wasChanged, filterType);
auto position = existingEntity->getPosition();
accepted = entityEditFilters->filter(position, propertiesIn, propertiesOut, wasChanged, filterType);
}
return accepted;