Browse Source

Fix LV2 state string exporting

pull/130/head
JP Cimalando Filipe Coelho <falktx@falktx.com> 6 years ago
parent
commit
83f1767d43
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      distrho/src/DistrhoPluginLV2export.cpp

+ 1
- 1
distrho/src/DistrhoPluginLV2export.cpp View File

@@ -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)


Loading…
Cancel
Save