Amend prev commit, pick different max channels for custom config

This commit is contained in:
Robin Gareus 2023-04-20 19:08:29 +02:00
parent 24986b1f17
commit bedca7b5ef
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 1 additions and 1 deletions

View File

@ -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);