DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit 8f9b3658313e8f9c1cf934670ebfa4e6813fc415
parent b86c78e94aa29b5c045755825cf84931399f2e88
Author: falkTX <falktx@gmail.com>
Date:   Sun,  7 Sep 2014 11:56:50 +0100

Fix last commit

Diffstat:
Mdistrho/src/DistrhoPluginLV2export.cpp | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/distrho/src/DistrhoPluginLV2export.cpp b/distrho/src/DistrhoPluginLV2export.cpp @@ -382,8 +382,10 @@ void lv2_generate_ttl(const char* const basename) if (hints & kParameterIsLogarithmic) pluginString += " lv2:portProperty <" LV2_PORT_PROPS__logarithmic "> ;\n"; if ((hints & kParameterIsAutomable) == 0 && ! plugin.isParameterOutput(i)) + { pluginString += " lv2:portProperty <" LV2_PORT_PROPS__expensive "> ,\n"; pluginString += " <" LV2_KXSTUDIO_PROPERTIES__NonAutomable "> ;\n"; + } } if (i+1 == count)