From e5b35c5ce6286643f7528b86d793fe1e18ff179f Mon Sep 17 00:00:00 2001 From: JP Cimalando Date: Sat, 3 Aug 2019 11:01:02 +0200 Subject: [PATCH] Fix the extension data descriptions --- distrho/src/DistrhoPluginLV2export.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/distrho/src/DistrhoPluginLV2export.cpp b/distrho/src/DistrhoPluginLV2export.cpp index 5e861efc..cbc54b90 100644 --- a/distrho/src/DistrhoPluginLV2export.cpp +++ b/distrho/src/DistrhoPluginLV2export.cpp @@ -73,9 +73,9 @@ // ----------------------------------------------------------------------- static const char *const lv2ManifestPluginExtensionData[] = { - LV2_STATE__interface, -#if DISTRHO_PLUGIN_WANT_STATE LV2_OPTIONS__interface, +#if DISTRHO_PLUGIN_WANT_STATE + LV2_STATE__interface, LV2_WORKER__interface, #endif #if DISTRHO_PLUGIN_WANT_PROGRAMS @@ -120,10 +120,12 @@ static const char *const lv2ManifestPluginSupportedOptions[] = #if DISTRHO_PLUGIN_HAS_UI static const char *const lv2ManifestUiExtensionData[] = { + LV2_OPTIONS__interface, "ui:idleInterface", "ui:showInterface", + "ui:resize", #if DISTRHO_PLUGIN_WANT_PROGRAMS - LV2_PROGRAMS__Interface, + LV2_PROGRAMS__UIInterface, #endif nullptr };