mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 00:43:18 +01:00
Fall back to general MIDI synth for auditioning.
This commit is contained in:
parent
f2a9c5f625
commit
f58a47419e
1 changed files with 4 additions and 1 deletions
|
|
@ -100,7 +100,10 @@ Auditioner::lookup_synth ()
|
|||
boost::shared_ptr<Plugin> p;
|
||||
p = find_plugin (_session, plugin_id, ARDOUR::LV2);
|
||||
if (!p) {
|
||||
p = find_plugin (_session, "https://community.ardour.org/node/7596", ARDOUR::LV2);
|
||||
p = find_plugin (_session, "http://gareus.org/oss/lv2/gmsynth", ARDOUR::LV2);
|
||||
if (!p) {
|
||||
p = find_plugin (_session, "https://community.ardour.org/node/7596", ARDOUR::LV2);
|
||||
}
|
||||
if (p) {
|
||||
warning << _("Falling back to Reasonable Synth for Midi Audition") << endmsg;
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue