mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
Stop QF messages when transport speed is out of range, and re-start them properly.
git-svn-id: svn://localhost/ardour2/branches/3.0@8423 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
b3fe29af41
commit
d795980546
6 changed files with 36 additions and 11 deletions
|
|
@ -1307,6 +1307,15 @@ RCOptionEditor::RCOptionEditor ()
|
|||
sigc::mem_fun (*_rc_config, &RCConfiguration::set_send_mtc)
|
||||
));
|
||||
|
||||
add_option (_("MIDI control"),
|
||||
new SpinOption<int> (
|
||||
"mtc-qf-speed-tolerance",
|
||||
_("Percentage either side of normal transport speed to transmit MTC"),
|
||||
sigc::mem_fun (*_rc_config, &RCConfiguration::get_mtc_qf_speed_tolerance),
|
||||
sigc::mem_fun (*_rc_config, &RCConfiguration::set_mtc_qf_speed_tolerance),
|
||||
0, 20, 1, 5
|
||||
));
|
||||
|
||||
add_option (_("MIDI control"),
|
||||
new BoolOption (
|
||||
"mmc-control",
|
||||
|
|
@ -1315,7 +1324,6 @@ RCOptionEditor::RCOptionEditor ()
|
|||
sigc::mem_fun (*_rc_config, &RCConfiguration::set_mmc_control)
|
||||
));
|
||||
|
||||
|
||||
add_option (_("MIDI control"),
|
||||
new BoolOption (
|
||||
"send-mmc",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue