Indicate cached IPlugView::canResize() calls

We apparently forgot to pass the flag here after implementing it in the
log function.
This commit is contained in:
Robbert van der Helm
2021-06-09 12:07:29 +02:00
parent da5f6e9e7d
commit 65c05aac88
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -21,6 +21,8 @@ Versioning](https://semver.org/spec/v2.0.0.html).
when a plugin fails to initialize the first time without it.
- Fixed mouse clicks in VST2 editors in **Tracktion Waveform** being offset
vertically because of the way Waveform embeds VST2 editors.
- Fixed log message for the cached `IPlugView::canResize()` VST3 function calls
implemented in yabridge 3.2.0.
## [3.3.0] - 2020-06-03
@@ -251,7 +251,7 @@ tresult PLUGIN_API Vst3PlugViewProxyImpl::canResize() {
const bool log_response = bridge.logger.log_request(true, request);
if (log_response) {
bridge.logger.log_response(
true, YaPlugView::CanResize::Response(*result));
true, YaPlugView::CanResize::Response(*result), true);
}
return *result;