Change order of midi entries so a new backend will default to a working midi system.

Needs testing on all platforms.
This commit is contained in:
Ben Loftis 2015-03-03 15:52:44 -06:00
parent a2d1f894b0
commit e3dd226ffa
4 changed files with 8 additions and 8 deletions

View file

@ -960,12 +960,12 @@ ARDOUR::enumerate_midi_options ()
vector<string> v;
v.push_back (get_none_string());
for (MidiOptions::const_iterator i = midi_options.begin(); i != midi_options.end(); ++i) {
v.push_back (i->first);
}
v.push_back (get_none_string());
return v;
}