From 2c858deae48c2ff9befe69658060d273d66a25b7 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 29 Feb 2024 16:15:50 +0100 Subject: [PATCH] Allow to stem-export Surround Master --- gtk2_ardour/export_channel_selector.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/export_channel_selector.cc b/gtk2_ardour/export_channel_selector.cc index f3795e3828..c7f25b9e30 100644 --- a/gtk2_ardour/export_channel_selector.cc +++ b/gtk2_ardour/export_channel_selector.cc @@ -838,7 +838,7 @@ TrackExportChannelSelector::fill_list() for (RouteList::iterator it = routes.begin(); it != routes.end(); ++it) { if (!std::dynamic_pointer_cast(*it)) { // not a track, must be a bus - if ((*it)->is_main_bus ()) { + if ((*it)->is_main_bus () && !(*it)->is_surround_master ()) { continue; } if (!(*it)->active ()) {