From d314a510f67c2b072f856914d2a94b9748fb7e4e Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 8 Dec 2018 17:04:32 +0100 Subject: [PATCH] Fix gmsynth detection Previously this worked since gmsynth was sorted after reasonably synth --- gtk2_ardour/instrument_selector.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/instrument_selector.cc b/gtk2_ardour/instrument_selector.cc index a5edfd8bff..8cb1890af5 100644 --- a/gtk2_ardour/instrument_selector.cc +++ b/gtk2_ardour/instrument_selector.cc @@ -153,7 +153,7 @@ InstrumentSelector::build_instrument_list() _reasonable_synth_id = n; } if (p->unique_id == "http://gareus.org/oss/lv2/gmsynth") { - _reasonable_synth_id = n; + _gmsynth_id = n; } prev = p->name; n++; -- 2.30.2