From 1eb3ebe2e0dd7a500a91eb752b5bc7c924d2f5fa Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Tue, 4 Aug 2015 13:02:10 -0400 Subject: [PATCH] In time track popup menu, shorten "Set &Range..." to "Range...", which... ... is consistent with the shortened "Rate..." and "Format..." for wave tracks --- src/TrackPanel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TrackPanel.cpp b/src/TrackPanel.cpp index 7751dc0d8..fa5640af1 100644 --- a/src/TrackPanel.cpp +++ b/src/TrackPanel.cpp @@ -772,7 +772,7 @@ void TrackPanel::BuildMenus(void) mTimeTrackMenu->Append(OnTimeTrackLinID, _("&Linear")); mTimeTrackMenu->Append(OnTimeTrackLogID, _("L&ogarithmic")); mTimeTrackMenu->AppendSeparator(); - mTimeTrackMenu->Append(OnSetTimeTrackRangeID, _("Set &Range...")); + mTimeTrackMenu->Append(OnSetTimeTrackRangeID, _("&Range...")); mTimeTrackMenu->AppendCheckItem(OnTimeTrackLogIntID, _("Logarithmic &Interpolation")); mRulerWaveformMenu = new wxMenu();