From c90d93992b60573aff2cc7514495212c5fb59988 Mon Sep 17 00:00:00 2001 From: falkTX Date: Tue, 10 Mar 2015 10:19:18 +0100 Subject: [PATCH] Skip bypass plugin on lv2-export --- source/plugin/carla-base.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/plugin/carla-base.cpp b/source/plugin/carla-base.cpp index ebf517c1f..543d6efc5 100644 --- a/source/plugin/carla-base.cpp +++ b/source/plugin/carla-base.cpp @@ -66,7 +66,8 @@ struct PluginListManager { continue; // skip some plugins - if (std::strcmp(desc->label, "3bandeq" ) == 0 || + if (std::strcmp(desc->label, "bypass" ) == 0 || + std::strcmp(desc->label, "3bandeq" ) == 0 || std::strcmp(desc->label, "3bandsplitter") == 0 || std::strcmp(desc->label, "mverb" ) == 0 || std::strcmp(desc->label, "nekobi" ) == 0 ||