1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-23 17:30:17 +01:00

Make monitoring work after a theme change

This commit is contained in:
James Crook
2017-04-05 17:29:24 +01:00
parent c8f58c90af
commit 419b790235
5 changed files with 31 additions and 31 deletions

View File

@@ -2237,6 +2237,10 @@ void AudioIO::SetPlaybackMeter(AudacityProject *project, Meter *meter)
}
}
Meter * AudioIO::GetCaptureMeter(){
return mInputMeter;
}
void AudioIO::SetMeters()
{
if (mInputMeter)
@@ -2515,6 +2519,7 @@ void AudioIO::StopStream()
if (mInputMeter)
mInputMeter->Reset(mRate, false);
if (mOutputMeter)
mOutputMeter->Reset(mRate, false);