From fd56c33f204817dbfc545b71de3ee3196706ff60 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 22 May 2016 22:13:03 +0200 Subject: [PATCH] import audio/midi at "session start by default Too many users report they import their first tracks and can't find them. Previous default was "at file timestamp". If a file has no timestamp, the import dialog shows "00:00:00:00" but in absence of a timestamp, Editor::add_sources() first checks target tracks and adds add it after the last region, then falls back to use preferred edit position as insert point. In the rare case where a file has timestamps it may show up a few hours in the future. conclusion: import-at-timestamp is not a good default. --- gtk2_ardour/sfdb_ui.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/sfdb_ui.cc b/gtk2_ardour/sfdb_ui.cc index d8a8843849..fb649fb36a 100644 --- a/gtk2_ardour/sfdb_ui.cc +++ b/gtk2_ardour/sfdb_ui.cc @@ -1690,7 +1690,7 @@ SoundFileOmega::SoundFileOmega (string title, ARDOUR::Session* s, str.push_back (_("playhead")); str.push_back (_("session start")); set_popdown_strings (where_combo, str); - where_combo.set_active_text (str.front()); + where_combo.set_active_text (str.back()); where_combo.signal_changed().connect (sigc::mem_fun (*this, &SoundFileOmega::where_combo_changed)); Label* l = manage (new Label);