1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-04 07:40:12 +01:00

No disabled state for meters. Monitoring can be on or off. Input meter now has prompt when monitoring off.

I haven't got rid of the preferences for disabled/enabled.
This commit is contained in:
james.k.crook@gmail.com
2014-11-29 21:10:44 +00:00
parent f9863a1400
commit 94c243cb2e
3 changed files with 62 additions and 69 deletions

View File

@@ -143,11 +143,7 @@ void MeterToolBar::RegenerateTooltips()
if( mPlayMeter )
mPlayMeter->SetToolTip( _("Playback Level.") );
if( mRecordMeter )
mRecordMeter->SetToolTip(
!gAudioIO->IsMonitoring() ?
_("Recording Level. (Click to monitor).") :
_("Recording Level. (Click to turn monitoring off).")
);
mRecordMeter->SetToolTip( _("Recording Level.") );
#endif
}