mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-24 07:27:44 +01:00
when deciding monitoring state, only consider the session to be in global record state if we are actively recording, not just if we are rec-enabled. this provides correct monitoring when punch in/out are enabled
git-svn-id: svn://localhost/ardour2/branches/3.0@13199 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
53afa11311
commit
f940452bc0
1 changed files with 1 additions and 1 deletions
|
|
@ -832,7 +832,7 @@ Track::monitoring_state () const
|
|||
|
||||
bool const roll = _session.transport_rolling ();
|
||||
bool const track_rec = _diskstream->record_enabled ();
|
||||
bool const session_rec = _session.get_record_enabled ();
|
||||
bool const session_rec = _session.actively_recording ();
|
||||
bool const auto_input = _session.config.get_auto_input ();
|
||||
bool const software_monitor = Config->get_monitoring_model() == SoftwareMonitoring;
|
||||
bool const tape_machine_mode = Config->get_tape_machine_mode ();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue