From bedca7b5ef5e75908ae1c67c469c5ece1108c519 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 20 Apr 2023 19:08:29 +0200 Subject: [PATCH] Amend prev commit, pick different max channels for custom config --- 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 2365177c33..361ceaa3b0 100644 --- a/gtk2_ardour/ardour_ui.cc +++ b/gtk2_ardour/ardour_ui.cc @@ -2867,7 +2867,7 @@ ARDOUR_UI::add_route_dialog_response (int r) /* Custom */ Gtk::HBox h; Gtk::Label* l = manage (new Label (string_compose (_("Audio Channels for new %1:"), add_route_dialog->type_wanted() == AddRouteDialog::AudioTrack ? _("Track") : _("Bus") ))); - Gtk::Adjustment* a = manage (new Gtk::Adjustment (2, 0, 96, 1)); + Gtk::Adjustment* a = manage (new Gtk::Adjustment (2, 0, 121, 1)); // arbitrary max 11^2 for 10th order amb) Gtk::SpinButton* s = manage (new Gtk::SpinButton (*a, 1, 0)); h.set_spacing (6);