L: mono tracks still have stereo outputs (livetrax ONLY)
This commit is contained in:
parent
c2e01bc636
commit
4e50e555af
@ -2913,7 +2913,8 @@ ARDOUR_UI::add_route_dialog_response (int r)
|
|||||||
if (Profile->get_livetrax()) {
|
if (Profile->get_livetrax()) {
|
||||||
if (r == RESPONSE_OK) {
|
if (r == RESPONSE_OK) {
|
||||||
int nchan = livetrax_track_dialog->stereo() ? 2 : 1;
|
int nchan = livetrax_track_dialog->stereo() ? 2 : 1;
|
||||||
session_add_audio_route (true, nchan, nchan, ARDOUR::Normal, nullptr, livetrax_track_dialog->num_tracks(), string(), false, PresentationInfo::max_order, false);
|
int out = (Profile->get_livetrax() ? 2 : 1);
|
||||||
|
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 ();
|
livetrax_track_dialog->hide ();
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user