From ea74eb527d8cb7af2545f960f34e7d3517bd37fa Mon Sep 17 00:00:00 2001
From: David Robillard <d@drobilla.net>
Date: Sun, 4 May 2014 08:17:57 +0000
Subject: 'Support' lv2:isLive.

git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@5394 a436a847-0d15-0410-975c-d299462d15a1
---
 src/jalv.c | 3 +++
 1 file changed, 3 insertions(+)

(limited to 'src')

diff --git a/src/jalv.c b/src/jalv.c
index 9fd7288..7ee1073 100644
--- a/src/jalv.c
+++ b/src/jalv.c
@@ -173,6 +173,9 @@ const LV2_Feature* features[13] = {
 static bool
 feature_is_supported(const char* uri)
 {
+	if (!strcmp(uri, "http://lv2plug.in/ns/lv2core#isLive")) {
+		return true;
+	}
 	for (const LV2_Feature*const* f = features; *f; ++f) {
 		if (!strcmp(uri, (*f)->URI)) {
 			return true;
-- 
cgit v1.2.1