summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2018-10-07 10:09:38 -0500
committerBen Loftis <ben@harrisonconsoles.com>2018-10-07 10:10:03 -0500
commit0f6e67a32fed814003b69df0e35cd8caa770efba (patch)
treec2c54adf05798dc7d83ca96ebb82a638944d59c8
parentbf7ed81a39daf433dc9c9123627afd2381e58386 (diff)
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.
-rw-r--r--libs/surfaces/faderport/gui.cc2
1 files changed, 2 insertions, 0 deletions
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);
}