mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 17:03:06 +01:00
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.
This commit is contained in:
parent
afc1186759
commit
fd56c33f20
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue