diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b42b1ea..4c30d68b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/plugin/bridges/vst3-impls/plug-view-proxy.cpp b/src/plugin/bridges/vst3-impls/plug-view-proxy.cpp index 2dedaed9..3bcd2632 100644 --- a/src/plugin/bridges/vst3-impls/plug-view-proxy.cpp +++ b/src/plugin/bridges/vst3-impls/plug-view-proxy.cpp @@ -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;