| 537 | } |
| 538 | |
| 539 | void SetLayerEditable(bool isEditable, const AEGP_ItemH& itemHandle, pag::ID id) { |
| 540 | std::string keyString = GetKeyStringWithId("noReplace", id); |
| 541 | DeleteMarkerFromComposition(itemHandle, keyString); |
| 542 | if (isEditable) { |
| 543 | return; |
| 544 | } |
| 545 | nlohmann::json value = 1; |
| 546 | AddMarkerToComposition(itemHandle, keyString, value); |
| 547 | } |
| 548 | |
| 549 | void SetCompositionStoragePath(const std::string& path, const AEGP_ItemH& itemHandle) { |
| 550 | std::string keyString = "storePath"; |
no test coverage detected