mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-08 06:35:46 +01:00
Add option to reset x-run count on record-start
This commit is contained in:
parent
69067b9d99
commit
989e388cad
2 changed files with 4 additions and 0 deletions
|
|
@ -156,6 +156,7 @@ CONFIG_VARIABLE (bool, use_click_emphasis, "use-click-emphasis", true)
|
|||
*/
|
||||
CONFIG_VARIABLE (bool, skip_playback, "skip-playback", true)
|
||||
CONFIG_VARIABLE (bool, plugins_stop_with_transport, "plugins-stop-with-transport", false)
|
||||
CONFIG_VARIABLE (bool, recording_resets_xrun_count, "recording-resets-xrun-count,", false)
|
||||
CONFIG_VARIABLE (bool, stop_recording_on_xrun, "stop-recording-on-xrun", false)
|
||||
CONFIG_VARIABLE (bool, create_xrun_marker, "create-xrun-marker", true)
|
||||
CONFIG_VARIABLE (bool, stop_at_session_end, "stop-at-session-end", false)
|
||||
|
|
|
|||
|
|
@ -1897,6 +1897,9 @@ Session::enable_record ()
|
|||
_last_record_location = _transport_sample;
|
||||
send_immediate_mmc (MIDI::MachineControlCommand (MIDI::MachineControl::cmdRecordStrobe));
|
||||
|
||||
if (Config->get_recording_resets_xrun_count ()) {
|
||||
reset_xrun_count ();
|
||||
}
|
||||
if (Config->get_monitoring_model() == HardwareMonitoring && config.get_auto_input()) {
|
||||
set_track_monitor_input_status (true);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue