DPF

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

commit 48c4ebf27baaf9c039209df1443013dc977e0819
parent 8e1704e3a1f937b85dd1151e0ca44b46b1d31296
Author: falkTX <falktx@falktx.com>
Date:   Thu, 29 Dec 2022 01:26:18 +0000

Let host be responsible for updating LV2 UI state

Signed-off-by: falkTX <falktx@falktx.com>

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

diff --git a/distrho/src/DistrhoPluginLV2.cpp b/distrho/src/DistrhoPluginLV2.cpp @@ -1070,6 +1070,7 @@ public: setState(key, filename); + /* FIXME host should be responsible for updating UI side, not us for (uint32_t i=0, count=fPlugin.getStateCount(); i < count; ++i) { if (fPlugin.getStateKey(i) == key) @@ -1079,6 +1080,7 @@ public: break; } } + */ return LV2_WORKER_SUCCESS; }