mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-20 14:20:06 +02:00
Wiki wording changes
a) 'Ends to Zero Crossings' to 'At Zero Crossings' and move from Region submenu to root because this is not only a region command and to aid finding and easy access b) Draw Tool error message recognises again that the tool works in Waveform (dB)
This commit is contained in:
parent
3cfe3eee4f
commit
cb039c200a
@ -635,9 +635,6 @@ void AudacityProject::CreateMenusAndCommands()
|
||||
c->AddItem(wxT("SelRestore"), _("Retrieve Selectio&n"), FN(OnSelectionRestore),
|
||||
TracksExistFlag,
|
||||
TracksExistFlag);
|
||||
c->AddSeparator();
|
||||
// GA: Likewise zero crossings can be just the cursor, so this doesn't belong here.
|
||||
c->AddItem(wxT("ZeroCross"), _("Ends to &Zero Crossings"), FN(OnZeroCrossing), wxT("Z"));
|
||||
|
||||
c->EndSubMenu();
|
||||
|
||||
@ -672,6 +669,7 @@ void AudacityProject::CreateMenusAndCommands()
|
||||
c->EndSubMenu();
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
c->AddSeparator();
|
||||
|
||||
c->AddItem(wxT("SelCursorStoredCursor"), _("Cursor to Stored &Cursor Position"), FN(OnSelectCursorStoredCursor),
|
||||
wxT(""), TracksExistFlag, TracksExistFlag);
|
||||
@ -682,6 +680,9 @@ void AudacityProject::CreateMenusAndCommands()
|
||||
// Save cursor position is used in some selections.
|
||||
// Maybe there should be a restore for it?
|
||||
|
||||
c->AddSeparator();
|
||||
|
||||
c->AddItem(wxT("ZeroCross"), _("At &Zero Crossings"), FN(OnZeroCrossing), wxT("Z"));
|
||||
|
||||
c->EndMenu();
|
||||
|
||||
|
@ -4595,7 +4595,7 @@ bool TrackPanel::IsSampleEditingPossible( wxMouseEvent &event, const WaveTrack *
|
||||
|
||||
if (WaveTrack::Waveform != display)
|
||||
{
|
||||
wxMessageBox(_("To use Draw, choose 'Waveform' in the Track Drop-down Menu."), _("Draw Tool"));
|
||||
wxMessageBox(_("To use Draw, choose 'Waveform' or 'Waveform (dB)' in the Track Dropdown Menu."), _("Draw Tool"));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user