Change order of midi entries so a new backend will default to a working midi system.
[ardour.git] / libs / backends / jack / jack_utils.cc
index cda7a6d8e780b12b451f496faf56f5e6b5fe4914..981c0d4b869384cf2c9b755bfeb3a56c10ff2c5e 100644 (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;
 }