Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix previous commit, make sure LV2 host knows about file change
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed Sep 7, 2023
1 parent 51ee448 commit eccd7fd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions distrho/src/DistrhoPluginLV2.cpp
Expand Up @@ -1058,6 +1058,7 @@ class PluginLv2
const std::size_t length = std::strlen(value);
DISTRHO_SAFE_ASSERT_CONTINUE(length == size || length+1 == size);

#if DISTRHO_PLUGIN_WANT_STATE
if (urid == fURIDs.atomPath)
{
const LV2_State_Map_Path* mapPath = nullptr;
Expand All @@ -1083,9 +1084,12 @@ class PluginLv2
std::free(absolutePath);
#endif

// signal msg needed for UI
fNeededUiSends[i] = true;
continue;
}
}
#endif

setState(key, value);

Expand Down

0 comments on commit eccd7fd

Please sign in to comment.