From 5c4e762130ebbe46ab6197ce4dae47a303f0e6af Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 15 May 2024 19:08:36 -0600 Subject: [PATCH] fix typo in 4e50e555a --- gtk2_ardour/ardour_ui.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc index fd90552a11..084e81ecd5 100644 --- a/gtk2_ardour/ardour_ui.cc +++ b/gtk2_ardour/ardour_ui.cc @@ -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 ();