mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 03:36:32 +01:00
Add MIDI readahead to options editor.
This commit is contained in:
parent
a8aae56d92
commit
408090adce
3 changed files with 24 additions and 9 deletions
|
|
@ -2066,6 +2066,16 @@ RCOptionEditor::RCOptionEditor ()
|
|||
sigc::mem_fun (*_rc_config, &RCConfiguration::set_link_send_and_route_panner)
|
||||
));
|
||||
|
||||
add_option (_("MIDI"),
|
||||
new SpinOption<float> (
|
||||
"midi-readahead",
|
||||
_("MIDI read-ahead time (seconds)"),
|
||||
sigc::mem_fun (*_rc_config, &RCConfiguration::get_midi_readahead),
|
||||
sigc::mem_fun (*_rc_config, &RCConfiguration::set_midi_readahead),
|
||||
0.1, 10, 0.1, 1,
|
||||
"", 1.0, 1
|
||||
));
|
||||
|
||||
add_option (_("MIDI"),
|
||||
new BoolOption (
|
||||
"send-midi-clock",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue