Browse Source

LV2 Wrapper: declare that we use uiprograms

Signed-off-by: falkTX <falktx@falktx.com>
tags/2020-12-27
falkTX 2 years ago
parent
commit
b8beb94f9f
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      libs/juce-legacy/source/modules/juce_audio_plugin_client/LV2/juce_LV2_Wrapper_Exporter.cpp

+ 3
- 2
libs/juce-legacy/source/modules/juce_audio_plugin_client/LV2/juce_LV2_Wrapper_Exporter.cpp View File

@@ -116,7 +116,8 @@ static const String makeManifestFile (AudioProcessor* const filter, const String
text += " a <" LV2_EXTERNAL_UI__Widget "> ;\n";
text += " ui:binary <" + binary + PLUGIN_EXT "> ;\n";
text += " lv2:requiredFeature <" LV2_INSTANCE_ACCESS_URI "> ;\n";
text += " lv2:optionalFeature ui:touch .\n";
text += " lv2:optionalFeature ui:touch ;\n";
text += " lv2:extensionData <" LV2_PROGRAMS__UIInterface "> .\n";
text += "\n";

text += "<" + pluginURI + "#ParentUI>\n";
@@ -130,7 +131,7 @@ static const String makeManifestFile (AudioProcessor* const filter, const String
text += " ui:binary <" + binary + PLUGIN_EXT "> ;\n";
text += " lv2:requiredFeature <" LV2_INSTANCE_ACCESS_URI "> ;\n";
text += " lv2:optionalFeature ui:idleInterface, ui:noUserResize, ui:touch ;\n";
text += " lv2:extensionData ui:idleInterface .\n";
text += " lv2:extensionData ui:idleInterface, <" LV2_PROGRAMS__UIInterface "> .\n";
text += "\n";
}
#endif


Loading…
Cancel
Save