summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_format_selector.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-03-13 16:22:24 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-03-13 16:22:24 +0000
commit5c4f7313ef3f5f56dbc5777a0f78061c5472b29e (patch)
tree67e9110fde282ee5630e2aaf445533a654d2dba9 /gtk2_ardour/export_format_selector.cc
parent54a5a796c48f01bf8faecfd603e93b795a08250e (diff)
sort export formats & presets in alphabetical name order
git-svn-id: svn://localhost/ardour2/branches/3.0@9135 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/export_format_selector.cc')
-rw-r--r--gtk2_ardour/export_format_selector.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk2_ardour/export_format_selector.cc b/gtk2_ardour/export_format_selector.cc
index 6b1f75987e..d3ffce936a 100644
--- a/gtk2_ardour/export_format_selector.cc
+++ b/gtk2_ardour/export_format_selector.cc
@@ -50,6 +50,7 @@ ExportFormatSelector::ExportFormatSelector () :
/* Format combo */
format_list = Gtk::ListStore::create (format_cols);
+ format_list->set_sort_column (format_cols.label, Gtk::SORT_ASCENDING);
format_combo.set_model (format_list);
format_combo.pack_start (format_cols.label);
format_combo.set_active (0);