mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-25 22:57:37 +01:00
fix metering when monitoring track input. (ran twice)
This commit is contained in:
parent
398839f6e1
commit
29108187ed
1 changed files with 1 additions and 1 deletions
|
|
@ -945,6 +945,6 @@ Track::set_monitoring (MonitorChoice mc)
|
|||
MeterState
|
||||
Track::metering_state () const
|
||||
{
|
||||
return _diskstream->record_enabled() ? MeteringInput : MeteringRoute;
|
||||
return (_diskstream->record_enabled() || _meter_point == MeterInput) ? MeteringInput : MeteringRoute;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue