Skip to content

Commit

Permalink
File menu: fix missing access keys
Browse files Browse the repository at this point in the history
Fixed 5 missing access keys.
  • Loading branch information
DavidBailes authored and crsib committed Apr 8, 2024
1 parent 32854f7 commit 3038304
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions modules/mod-cloud-audiocom/menus/AudioComMenus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,24 +85,24 @@ const ReservedCommandFlag& IsCloudProjectFlag()
using namespace MenuRegistry;

AttachedItem sSaveAttachment { Command(
wxT("SaveToCloud"), XXO("Save To Cloud..."),
wxT("SaveToCloud"), XXO("Save &To Cloud..."),
OnSaveToCloud, AlwaysEnabledFlag),
wxT("File/Save") };

AttachedItem sMixdownAttachment { Command(
wxT("UpdateMixdown"),
XXO("Update Cloud Audio Preview"),
XXO("&Update Cloud Audio Preview"),
OnUpdateMixdown, IsCloudProjectFlag()),
wxT("File/Save") };

AttachedItem sOpenAttachment { Command(
wxT("OpenFromCloud"),
XXO("Open From Cloud..."), OnOpenFromCloud,
XXO("Open Fro&m Cloud..."), OnOpenFromCloud,
AlwaysEnabledFlag),
wxT("File/Basic") };

AttachedItem sShareAttachment { Command(
wxT("ShareAudio"), XXO("Share Audio..."),
wxT("ShareAudio"), XXO("S&hare Audio..."),
OnShareAudio, WaveTracksExistFlag()),
wxT("File/Import-Export") };

Expand Down
2 changes: 1 addition & 1 deletion src/menus/FileMenus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ auto FileMenu()
Command( wxT("Export"), XXO("&Export Audio..."), OnExportAudio,
AudioIONotBusyFlag() | WaveTracksExistFlag(), wxT("Ctrl+Shift+E") ),

Menu( wxT("ExportOther"), XXO("Export Other"),
Menu( wxT("ExportOther"), XXO("Expo&rt Other"),
Command( wxT("ExportLabels"), XXO("Export &Labels..."),
OnExportLabels,
AudioIONotBusyFlag() | LabelTracksExistFlag() )
Expand Down

0 comments on commit 3038304

Please sign in to comment.