Implement IComponentHandler::endEdit()

This commit is contained in:
Robbert van der Helm
2020-12-19 15:48:06 +01:00
parent bb99a539d5
commit 25575e2d3a
6 changed files with 38 additions and 4 deletions
+6
View File
@@ -96,6 +96,12 @@ Vst3PluginBridge::Vst3PluginBridge()
.component_handler->performEdit(
request.id, request.value_normalized);
},
[&](const YaComponentHandler::EndEdit& request)
-> YaComponentHandler::EndEdit::Response {
return plugin_proxies.at(request.owner_instance_id)
.get()
.component_handler->endEdit(request.id);
},
});
});
}