Fix wrong 'Import to Region List' default on first call. -fixes #6631

This commit is contained in:
André Nusser 2015-10-09 02:05:41 +02:00
parent 33fe33f268
commit 1df97b4174
2 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ Editor::add_external_audio_action (ImportMode mode_hint)
}
if (sfbrowser == 0) {
sfbrowser = new SoundFileOmega (_("Add Existing Media"), _session, 0, true, mode_hint);
sfbrowser = new SoundFileOmega (_("Add Existing Media"), _session, 0, 0, true, mode_hint);
} else {
sfbrowser->set_mode (mode_hint);
}

View File

@ -1687,7 +1687,7 @@ SoundFileOmega::SoundFileOmega (string title, ARDOUR::Session* s,
where_combo.signal_changed().connect (sigc::mem_fun (*this, &SoundFileOmega::where_combo_changed));
Label* l = manage (new Label);
l->set_markup (_("<b>Add files as ...</b>"));
l->set_markup (_("<b>Add files ...</b>"));
vbox = manage (new VBox);
vbox->set_border_width (12);