mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-10 04:30:12 +02:00
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:
@@ -21,6 +21,8 @@ Versioning](https://semver.org/spec/v2.0.0.html).
|
|||||||
when a plugin fails to initialize the first time without it.
|
when a plugin fails to initialize the first time without it.
|
||||||
- Fixed mouse clicks in VST2 editors in **Tracktion Waveform** being offset
|
- Fixed mouse clicks in VST2 editors in **Tracktion Waveform** being offset
|
||||||
vertically because of the way Waveform embeds VST2 editors.
|
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
|
## [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);
|
const bool log_response = bridge.logger.log_request(true, request);
|
||||||
if (log_response) {
|
if (log_response) {
|
||||||
bridge.logger.log_response(
|
bridge.logger.log_response(
|
||||||
true, YaPlugView::CanResize::Response(*result));
|
true, YaPlugView::CanResize::Response(*result), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
return *result;
|
return *result;
|
||||||
|
|||||||
Reference in New Issue
Block a user