13
0
This commit is contained in:
Paul Davis 2024-05-15 19:08:36 -06:00
parent 4e50e555af
commit 5c4e762130

View File

@ -2913,7 +2913,7 @@ ARDOUR_UI::add_route_dialog_response (int r)
if (Profile->get_livetrax()) {
if (r == RESPONSE_OK) {
int nchan = livetrax_track_dialog->stereo() ? 2 : 1;
int out = (Profile->get_livetrax() ? 2 : 1);
int out = (Profile->get_livetrax() ? 2 : nchan);
session_add_audio_route (true, nchan, out, ARDOUR::Normal, nullptr, livetrax_track_dialog->num_tracks(), string(), false, PresentationInfo::max_order, false);
}
livetrax_track_dialog->hide ();