1
0
Fork 0

Expose node position over property-mirror protocol.

This commit is contained in:
James Turner 2017-01-26 20:35:56 +00:00
parent a26a5d741b
commit c9f922ce1b

View file

@ -246,6 +246,7 @@ using std::string;
cJSON_AddItemToObject(newPropData, "path", cJSON_CreateString(prop->getPath(true).c_str()));
cJSON_AddItemToObject(newPropData, "type", cJSON_CreateString(JSON::getPropertyTypeString(prop->getType())));
cJSON_AddItemToObject(newPropData, "index", cJSON_CreateNumber(prop->getIndex()));
cJSON_AddItemToObject(newPropData, "position", cJSON_CreateNumber(prop->getPosition()));
cJSON_AddItemToObject(newPropData, "id", cJSON_CreateNumber(idForProperty(prop)));
cJSON_AddItemToObject(newPropData, "value", JSON::valueToJson(prop));