DPF

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

commit 83f1767d438233147b0c76b44afa3d686441b366
parent 3f5d988041cd926148dd4dee5cfae1aafcb00c72
Author: JP Cimalando <jp-dev@inbox.ru>
Date:   Sat,  8 Jun 2019 16:13:31 +0200

Fix LV2 state string exporting

Diffstat:
Mdistrho/src/DistrhoPluginLV2export.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/distrho/src/DistrhoPluginLV2export.cpp b/distrho/src/DistrhoPluginLV2export.cpp @@ -719,7 +719,7 @@ void lv2_generate_ttl(const char* const basename) if (value.length() < 10) presetString += " \"" + value + "\" ;\n"; else - presetString += "\n\"\"\"\n" + value + "\n\"\"\" ;\n"; + presetString += "\n\"\"\"" + value + "\"\"\" ;\n"; } if (numParameters > 0)