Browse Source

Do not require label for vst3

tags/v2.1-rc1
falkTX 5 years ago
parent
commit
3322c9fa7b
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      source/backend/plugin/CarlaPluginJuce.cpp

+ 2
- 2
source/backend/plugin/CarlaPluginJuce.cpp View File

@@ -1229,8 +1229,8 @@ public:
return false;
}

// AU and VST3 require label
if (std::strcmp(format, "AU") == 0 || std::strcmp(format, "VST3") == 0)
// AU requires label
if (std::strcmp(format, "AU") == 0)
{
if (label == nullptr || label[0] == '\0')
{


Loading…
Cancel
Save