mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-12 06:37:52 +02:00
UnmuteAllTracks, not UnMuteAllTracks.
This commit is contained in:
parent
859fe69a15
commit
bcf0865c1a
@ -1010,7 +1010,7 @@ void AudacityProject::CreateMenusAndCommands()
|
||||
|
||||
c->BeginSubMenu(_("M&ute/Unmute"));
|
||||
c->AddItem(wxT("MuteAllTracks"), _("&Mute All Tracks"), FN(OnMuteAllTracks), wxT("Ctrl+U"));
|
||||
c->AddItem(wxT("UnMuteAllTracks"), _("&Unmute All Tracks"), FN(OnUnMuteAllTracks), wxT("Ctrl+Shift+U"));
|
||||
c->AddItem(wxT("UnmuteAllTracks"), _("&Unmute All Tracks"), FN(OnUnmuteAllTracks), wxT("Ctrl+Shift+U"));
|
||||
c->EndSubMenu();
|
||||
|
||||
c->BeginSubMenu(_("&Pan"));
|
||||
@ -8753,7 +8753,7 @@ void AudacityProject::OnMuteAllTracks(const CommandContext &WXUNUSED(context) )
|
||||
}
|
||||
}
|
||||
|
||||
void AudacityProject::OnUnMuteAllTracks(const CommandContext &WXUNUSED(context) )
|
||||
void AudacityProject::OnUnmuteAllTracks(const CommandContext &WXUNUSED(context) )
|
||||
{
|
||||
TrackListIterator iter(GetTracks());
|
||||
Track *t = iter.First();
|
||||
|
@ -354,7 +354,7 @@ void OnPanRight(const CommandContext &context );
|
||||
void OnPanCenter(const CommandContext &context );
|
||||
|
||||
void OnMuteAllTracks(const CommandContext &context );
|
||||
void OnUnMuteAllTracks(const CommandContext &context );
|
||||
void OnUnmuteAllTracks(const CommandContext &context );
|
||||
|
||||
void OnShowClipping(const CommandContext &context );
|
||||
void OnShowExtraMenus(const CommandContext &context );
|
||||
|
Loading…
x
Reference in New Issue
Block a user