1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-04 17:49:45 +02:00

In time track popup menu, shorten "Set &Range..." to "Range...", which...

... is consistent with the shortened "Rate..." and "Format..." for wave tracks
This commit is contained in:
Paul Licameli 2015-08-04 13:02:10 -04:00
parent b0de2fa900
commit 1eb3ebe2e0

View File

@ -772,7 +772,7 @@ void TrackPanel::BuildMenus(void)
mTimeTrackMenu->Append(OnTimeTrackLinID, _("&Linear")); mTimeTrackMenu->Append(OnTimeTrackLinID, _("&Linear"));
mTimeTrackMenu->Append(OnTimeTrackLogID, _("L&ogarithmic")); mTimeTrackMenu->Append(OnTimeTrackLogID, _("L&ogarithmic"));
mTimeTrackMenu->AppendSeparator(); mTimeTrackMenu->AppendSeparator();
mTimeTrackMenu->Append(OnSetTimeTrackRangeID, _("Set &Range...")); mTimeTrackMenu->Append(OnSetTimeTrackRangeID, _("&Range..."));
mTimeTrackMenu->AppendCheckItem(OnTimeTrackLogIntID, _("Logarithmic &Interpolation")); mTimeTrackMenu->AppendCheckItem(OnTimeTrackLogIntID, _("Logarithmic &Interpolation"));
mRulerWaveformMenu = new wxMenu(); mRulerWaveformMenu = new wxMenu();