From a742228463531d1e4ec2480108c251b3929e8f5a Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 15 May 2022 21:39:19 +0200 Subject: [PATCH] Use "Wav (tagged)" as default export profile Otherwise the first, alphabetically sorted, format is used, which is currently (Amazon Music, normalize loudness). --- gtk2_ardour/export_format_selector.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gtk2_ardour/export_format_selector.cc b/gtk2_ardour/export_format_selector.cc index 4f155c6340..30c9f0539f 100644 --- a/gtk2_ardour/export_format_selector.cc +++ b/gtk2_ardour/export_format_selector.cc @@ -90,6 +90,9 @@ ExportFormatSelector::update_format_list () tree_it = format_list->append(); tree_it->set_value (format_cols.format, *it); tree_it->set_value (format_cols.label, (*it)->description()); + if (!format_to_select && (*it)->id ().to_s () == "dd4f6f30-f054-4e0a-8d91-67eed5d79153" /* "Wav (Tagged)" */) { + format_to_select = *it; + } } if (format_combo.get_active_row_number() == -1 && format_combo.get_model()->children().size() > 0) {