summaryrefslogtreecommitdiff
path: root/gtk2_ardour/sfdb_ui.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-05-22 22:13:03 +0200
committerRobin Gareus <robin@gareus.org>2016-05-22 22:13:03 +0200
commitfd56c33f204817dbfc545b71de3ee3196706ff60 (patch)
tree125fbba375479226693856991bb664da9c25977b /gtk2_ardour/sfdb_ui.cc
parentafc1186759225f8ee6ced80578e3dc18224076ee (diff)
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.
Diffstat (limited to 'gtk2_ardour/sfdb_ui.cc')
-rw-r--r--gtk2_ardour/sfdb_ui.cc2
1 files changed, 1 insertions, 1 deletions
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);