From: Paul Davis Date: Sat, 3 Dec 2011 14:02:49 +0000 (+0000) Subject: made region export default to use region gain and fades X-Git-Tag: 3.0-beta2~280 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;h=b985476a12d01dfb3a89f439bb6ba1a0a69a39be;p=ardour.git made region export default to use region gain and fades git-svn-id: svn://localhost/ardour2/branches/3.0@10882 d708f5d6-7413-0410-9779-e7cbd77b26cf --- diff --git a/gtk2_ardour/export_channel_selector.cc b/gtk2_ardour/export_channel_selector.cc index 6cf73d2296..4f332c9bff 100644 --- a/gtk2_ardour/export_channel_selector.cc +++ b/gtk2_ardour/export_channel_selector.cc @@ -453,6 +453,10 @@ RegionExportChannelSelector::RegionExportChannelSelector (ARDOUR::Session * _ses { pack_start (vbox); + /* make fades+region gain be the default */ + + fades_button.set_active (); + raw_button.set_label (string_compose (_("Region contents without fades nor region gain (channels: %1)"), region_chans)); raw_button.signal_toggled ().connect (sigc::mem_fun (*this, &RegionExportChannelSelector::handle_selection)); vbox.pack_start (raw_button);