diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/jalv.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -128,7 +128,8 @@ static const LV2_Feature static_features[] = { static bool feature_is_supported(Jalv* jalv, const char* uri) { - if (!strcmp(uri, "http://lv2plug.in/ns/lv2core#isLive")) { + if (!strcmp(uri, "http://lv2plug.in/ns/lv2core#isLive") || + !strcmp(uri, "http://lv2plug.in/ns/lv2core#inPlaceBroken")) { return true; } |