Add preference to reset x-run counter on rec-start #6706

This commit is contained in:
Robin Gareus 2020-04-07 23:51:39 +02:00
parent 989e388cad
commit f7abab11a3
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -3406,6 +3406,14 @@ RCOptionEditor::RCOptionEditor ()
);
add_option (_("Transport"), bo);
bo = new BoolOption (
"recording-resets-xrun-count",
_("Reset x-run counter when starting to record"),
sigc::mem_fun (*_rc_config, &RCConfiguration::get_recording_resets_xrun_count),
sigc::mem_fun (*_rc_config, &RCConfiguration::set_recording_resets_xrun_count)
);
add_option (_("Transport"), bo);
add_option (_("Transport"), new OptionEditorHeading (_("Transport Masters")));