From 0f6e67a32fed814003b69df0e35cd8caa770efba Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Sun, 7 Oct 2018 10:09:38 -0500 Subject: [PATCH] Faderport(Classic): Add Record-PreRoll and Record-CountIn actions to the footswitch selections. Could make this menu access -any- action, but I think a short useful list of transport items is better in this case. --- libs/surfaces/faderport/gui.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/surfaces/faderport/gui.cc b/libs/surfaces/faderport/gui.cc index 186fbd04e9..68c89007b1 100644 --- a/libs/surfaces/faderport/gui.cc +++ b/libs/surfaces/faderport/gui.cc @@ -571,6 +571,8 @@ FPGUI::build_foot_action_combo (Gtk::ComboBox& cb, FaderPort::ButtonState bs) actions.push_back (make_pair (string("Toggle Roll+Rec"), string(X_("Transport/record-roll")))); actions.push_back (make_pair (string("Toggle Loop"), string(X_("Transport/Loop")))); actions.push_back (make_pair (string("Toggle Click"), string(X_("Transport/ToggleClick")))); + actions.push_back (make_pair (string("Record with Pre-Roll"), string(X_("Transport/RecordPreroll")))); + actions.push_back (make_pair (string("Record with Count-In"), string(X_("Transport/RecordCountIn")))); build_action_combo (cb, actions, FaderPort::Footswitch, bs); }