mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-07 03:50:11 +02:00
Remove debug prints when opening VST2 editors
This commit is contained in:
@@ -20,6 +20,7 @@ TODO: Mention CLAP. Because, you know, kinda important new feature.
|
|||||||
|
|
||||||
- Fixed a minor memory leak in the Wine->X11 drag-and-drop implementation when
|
- Fixed a minor memory leak in the Wine->X11 drag-and-drop implementation when
|
||||||
converting Windows file paths.
|
converting Windows file paths.
|
||||||
|
- Removed leftover debug prints when opening VST2 editor.
|
||||||
|
|
||||||
### yabridgectl
|
### yabridgectl
|
||||||
|
|
||||||
|
|||||||
@@ -755,8 +755,6 @@ intptr_t Vst2Bridge::dispatch_wrapper(AEffect* plugin,
|
|||||||
VstRect* editor_rect = nullptr;
|
VstRect* editor_rect = nullptr;
|
||||||
plugin->dispatcher(plugin, effEditGetRect, 0, 0, &editor_rect, 0.0);
|
plugin->dispatcher(plugin, effEditGetRect, 0, 0, &editor_rect, 0.0);
|
||||||
if (editor_rect) {
|
if (editor_rect) {
|
||||||
std::cerr << editor_rect->right << std::endl;
|
|
||||||
std::cerr << editor_rect->bottom << std::endl;
|
|
||||||
editor_->resize(editor_rect->right - editor_rect->left,
|
editor_->resize(editor_rect->right - editor_rect->left,
|
||||||
editor_rect->bottom - editor_rect->top);
|
editor_rect->bottom - editor_rect->top);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user