Skip X11 LV2UI check on Windows and MacOS
This commit is contained in:
parent
86337810fe
commit
1477bca76e
@ -851,6 +851,7 @@ LV2Plugin::init(const void* c_plugin, samplecnt_t rate)
|
|||||||
#ifdef HAVE_SUIL
|
#ifdef HAVE_SUIL
|
||||||
const LilvUI* this_ui = NULL;
|
const LilvUI* this_ui = NULL;
|
||||||
const LilvNode* this_ui_type = NULL;
|
const LilvNode* this_ui_type = NULL;
|
||||||
|
#if ! (defined(__APPLE__) || defined(PLATFORM_WINDOWS))
|
||||||
// Always prefer X11 UIs...
|
// Always prefer X11 UIs...
|
||||||
LILV_FOREACH(uis, i, uis) {
|
LILV_FOREACH(uis, i, uis) {
|
||||||
const LilvUI* ui = lilv_uis_get(uis, i);
|
const LilvUI* ui = lilv_uis_get(uis, i);
|
||||||
@ -860,6 +861,7 @@ LV2Plugin::init(const void* c_plugin, samplecnt_t rate)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
// then anything else...
|
// then anything else...
|
||||||
if (this_ui_type == NULL) {
|
if (this_ui_type == NULL) {
|
||||||
LILV_FOREACH(uis, i, uis) {
|
LILV_FOREACH(uis, i, uis) {
|
||||||
|
Loading…
Reference in New Issue
Block a user