From 0c9dfc493327f76ff383b06f6c9fc7bb04efa971 Mon Sep 17 00:00:00 2001 From: David Bailes Date: Mon, 18 Jun 2018 13:58:14 +0100 Subject: [PATCH] More convenient shortcuts for selecting prev/next clip The shortcuts for these commands were changed in commit e01122e841fc25cd004ecea77b1665015700f937 to avoid conflicts with the access keys of menus. They were changed to Ctrl+Alt+P/N. These aren't very convenient for typing, so this commit changes them to Alt+comma/period. --- src/Menus.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Menus.cpp b/src/Menus.cpp index 36a302a50..667b5ffa4 100644 --- a/src/Menus.cpp +++ b/src/Menus.cpp @@ -685,9 +685,9 @@ void AudacityProject::CreateMenusAndCommands() c->AddItem(wxT("SelCursorToNextClipBoundary"), XXO("Cursor to Ne&xt Clip Boundary"), FN(OnSelectCursorToNextClipBoundary), wxT(""), WaveTracksExistFlag, WaveTracksExistFlag); - c->SetLongName( _("Select Previous Clip"))->AddItem(wxT("SelPrevClip"), XXO("Previo&us Clip"), FN(OnSelectPrevClip), wxT("Ctrl+Alt+P"), + c->SetLongName( _("Select Previous Clip"))->AddItem(wxT("SelPrevClip"), XXO("Previo&us Clip"), FN(OnSelectPrevClip), wxT("Alt+,"), WaveTracksExistFlag, WaveTracksExistFlag); - c->SetLongName( _("Select Next Clip"))->AddItem(wxT("SelNextClip"), XXO("N&ext Clip"), FN(OnSelectNextClip), wxT("Ctrl+Alt+N"), + c->SetLongName( _("Select Next Clip"))->AddItem(wxT("SelNextClip"), XXO("N&ext Clip"), FN(OnSelectNextClip), wxT("Alt+."), WaveTracksExistFlag, WaveTracksExistFlag); c->EndSubMenu();