mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
add a preference for MMC FastWind which allows skipping to markers
This commit is contained in:
parent
59e50c0e16
commit
ff9a55df97
6 changed files with 54 additions and 2 deletions
|
|
@ -3829,6 +3829,17 @@ These settings will only take effect after %1 is restarted.\n\
|
|||
0, 127, 1, 10
|
||||
));
|
||||
|
||||
ComboOption<FastWindOp> *mtc_op = new ComboOption<FastWindOp> (
|
||||
"mmc-fast-wind-op",
|
||||
_("MMC Fast-wind behavior"),
|
||||
sigc::mem_fun (*_rc_config, &RCConfiguration::get_mmc_fast_wind_op),
|
||||
sigc::mem_fun (*_rc_config, &RCConfiguration::set_mmc_fast_wind_op)
|
||||
);
|
||||
mtc_op->add (FastWindOff, _("Off (MMC fast-forward+rewind are ignored)"));
|
||||
mtc_op->add (FastWindVarispeed, _("Varispeed"));
|
||||
mtc_op->add (FastWindLocate, _("Marker Locate (MMC ffwd/rewd jumps to next/prior marker)"));
|
||||
add_option (_("Transport/Chase"), mtc_op);
|
||||
|
||||
add_option (_("Transport/Chase"), new OptionEditorHeading (_("Transport Masters")));
|
||||
|
||||
add_option (_("Transport/Chase"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue