From 2927156b3956b2d5f7b8057fa9ebbcdd9a34745b Mon Sep 17 00:00:00 2001 From: Diego Escalante Urrelo Date: Tue, 5 Jun 2007 21:54:47 +0000 Subject: src/ephy-history-window.c src/bookmarks/ephy-bookmarks-editor.c 2007-06-05 Diego Escalante Urrelo * src/ephy-history-window.c * src/bookmarks/ephy-bookmarks-editor.c * data/ui/epiphany-history-window-ui.xml * data/ui/epiphany-bookmark-editor-ui.xml: Assign control+T as default delete shortcut. Also move the Delete item to Edit menu. Bug #351100. svn path=/trunk/; revision=7076 --- src/ephy-history-window.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/ephy-history-window.c') diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c index e45c1aa63..9f7d955b1 100644 --- a/src/ephy-history-window.c +++ b/src/ephy-history-window.c @@ -175,9 +175,6 @@ static const GtkActionEntry ephy_history_ui_entries [] = { { "OpenInTab", STOCK_NEW_TAB, N_("Open in New _Tab"), "O", N_("Open the selected history link in a new tab"), G_CALLBACK (cmd_open_bookmarks_in_tabs) }, - { "Delete", GTK_STOCK_DELETE, N_("_Delete"), NULL, - N_("Delete the selected history link"), - G_CALLBACK (cmd_delete) }, { "BookmarkLink", STOCK_ADD_BOOKMARK, N_("Add _Bookmark…"), "D", N_("Bookmark the selected history link"), G_CALLBACK (cmd_bookmark_link) }, @@ -195,6 +192,9 @@ static const GtkActionEntry ephy_history_ui_entries [] = { { "Paste", GTK_STOCK_PASTE, N_("_Paste"), "V", N_("Paste the clipboard"), G_CALLBACK (cmd_paste) }, + { "Delete", GTK_STOCK_DELETE, N_("_Delete"), "T", + N_("Delete the selected history link"), + G_CALLBACK (cmd_delete) }, { "SelectAll", NULL, N_("Select _All"), "A", N_("Select all history links or text"), G_CALLBACK (cmd_select_all) }, -- cgit