Remove debug prints when opening VST2 editors

This commit is contained in:
Robbert van der Helm
2022-09-29 19:21:31 +02:00
parent 87a9ac75b9
commit 48a3c76fe6
2 changed files with 1 additions and 2 deletions
-2
View File
@@ -755,8 +755,6 @@ intptr_t Vst2Bridge::dispatch_wrapper(AEffect* plugin,
VstRect* editor_rect = nullptr;
plugin->dispatcher(plugin, effEditGetRect, 0, 0, &editor_rect, 0.0);
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_rect->bottom - editor_rect->top);
}