Skip to content

Commit

Permalink
Adds accelerator keys to menu items
Browse files Browse the repository at this point in the history
  • Loading branch information
crsib committed Sep 26, 2023
1 parent 28cce1c commit 86500e2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -707,17 +707,17 @@ using namespace MenuTable;
// Register menu items

AttachedItem sAttachment{ wxT("Edit/Other/Clip"),
Command( L"RenameClip", XXO("Rename Clip..."),
Command( L"RenameClip", XXO("&Rename Clip..."),
OnEditClipName, SomeClipIsSelectedFlag(), wxT("Ctrl+F2") )
};

AttachedItem sAttachment2{ wxT("Edit/Other/Clip"),
Command( L"ChangeClipSpeed", XXO("Change Speed..."),
Command( L"ChangeClipSpeed", XXO("Change &Speed..."),
OnChangeClipSpeed, SomeClipIsSelectedFlag() )
};

AttachedItem sAttachment3{ wxT("Edit/Other/Clip"),
Command( L"RenderClipStretching", XXO("Render Clip Stretching"),
Command( L"RenderClipStretching", XXO("Render Clip S&tretching"),
OnRenderClipStretching, StretchedClipIsSelectedFlag())
};
}

0 comments on commit 86500e2

Please sign in to comment.