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
@ -832,7 +832,7 @@ Track::monitoring_state () const
|
|||||||
|
|
||||||
bool const roll = _session.transport_rolling ();
|
bool const roll = _session.transport_rolling ();
|
||||||
bool const track_rec = _diskstream->record_enabled ();
|
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 auto_input = _session.config.get_auto_input ();
|
||||||
bool const software_monitor = Config->get_monitoring_model() == SoftwareMonitoring;
|
bool const software_monitor = Config->get_monitoring_model() == SoftwareMonitoring;
|
||||||
bool const tape_machine_mode = Config->get_tape_machine_mode ();
|
bool const tape_machine_mode = Config->get_tape_machine_mode ();
|
||||||
|
Loading…
Reference in New Issue
Block a user