Implement IComponentHandler::performEdit()

This commit is contained in:
Robbert van der Helm
2020-12-19 15:45:24 +01:00
parent 3b06bca95e
commit bb99a539d5
6 changed files with 46 additions and 6 deletions
+7
View File
@@ -89,6 +89,13 @@ Vst3PluginBridge::Vst3PluginBridge()
.get()
.component_handler->beginEdit(request.id);
},
[&](const YaComponentHandler::PerformEdit& request)
-> YaComponentHandler::PerformEdit::Response {
return plugin_proxies.at(request.owner_instance_id)
.get()
.component_handler->performEdit(
request.id, request.value_normalized);
},
});
});
}