From 65c05aac8815e7851c505560c51425dcc2510bba Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Wed, 9 Jun 2021 12:07:29 +0200 Subject: [PATCH] Indicate cached IPlugView::canResize() calls We apparently forgot to pass the flag here after implementing it in the log function. --- CHANGELOG.md | 2 ++ src/plugin/bridges/vst3-impls/plug-view-proxy.cpp | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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;