diff options
-rw-r--r-- | COPYING | 4 | ||||
-rw-r--r-- | src/jalv.c | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -Copyright 2011 David Robillard <http://drobilla.net> +Copyright 2011-2012 David Robillard <http://drobilla.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -10,4 +10,4 @@ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
\ No newline at end of file +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. @@ -769,7 +769,7 @@ main(int argc, char** argv) LilvNode* native_ui_type = jalv_native_ui_type(&host); const LilvNode* ui_type = NULL; host.ui = NULL; - if (native_ui_type) { + if (!host.opts.generic_ui && native_ui_type) { host.uis = lilv_plugin_get_uis(host.plugin); LILV_FOREACH(uis, u, host.uis) { const LilvUI* this_ui = lilv_uis_get(host.uis, u); |