X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=gtk2_ardour%2Feditor_export_audio.cc;h=ac0c3f67c4456eb86fd01b8c9977c1fe8efcaeb2;hb=6ee23029a338951705c589be6c61ab52099758b6;hp=4a0424eb871272654557e84157cd094bd70b19e8;hpb=0bc8832e208154a0f172d34182ed6b0bc8bba52f;p=ardour.git diff --git a/gtk2_ardour/editor_export_audio.cc b/gtk2_ardour/editor_export_audio.cc index 4a0424eb87..ac0c3f67c4 100644 --- a/gtk2_ardour/editor_export_audio.cc +++ b/gtk2_ardour/editor_export_audio.cc @@ -161,7 +161,13 @@ Editor::bounce_region_selection (bool with_processing) InterThreadInfo itt; - boost::shared_ptr r = track->bounce_range (region->position(), region->position() + region->length(), itt, with_processing); + boost::shared_ptr r; + + if (with_processing) { + r = track->bounce_range (region->position(), region->position() + region->length(), itt, track->main_outs(), false); + } else { + r = track->bounce_range (region->position(), region->position() + region->length(), itt, boost::shared_ptr(), false); + } } }