For reasons not known, the Cut and Copy options in the grid context menu have been swapped since a time before time.

Originally committed to SVN as r6195.
This commit is contained in:
Niels Martin Hansen 2012-01-01 19:31:14 +00:00
parent 20c7cbb6c7
commit 2976c1b739
1 changed files with 1 additions and 3 deletions

View File

@ -193,10 +193,8 @@ void SubtitlesGrid::OnPopupMenu(bool alternate, const wxPoint &pos) {
menu.Append(MENU_AUDIOCLIP,_("Create audio clip"),_("Create an audio clip of the selected line"))->Enable(state);
menu.AppendSeparator();
// Copy/cut/paste
menu.Append(MENU_COPY,_("&Copy"),_("Copies selected lines to clipboard"));
menu.Append(MENU_CUT,_("C&ut"),_("Cuts selected lines to clipboard"));
menu.Append(MENU_COPY,_("&Copy"),_("Copies selected lines to clipboard"));
menu.Append(MENU_PASTE,_("&Paste"),_("Paste lines from clipboard"));
menu.AppendSeparator();