From 2976c1b7391a5aaee751285008b6e7c2fd05333f Mon Sep 17 00:00:00 2001 From: Niels Martin Hansen Date: Sun, 1 Jan 2012 19:31:14 +0000 Subject: [PATCH] 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. --- aegisub/src/subs_grid.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/aegisub/src/subs_grid.cpp b/aegisub/src/subs_grid.cpp index ec569d94d..841db5b78 100644 --- a/aegisub/src/subs_grid.cpp +++ b/aegisub/src/subs_grid.cpp @@ -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();