diff options
author | Diego Escalante Urrelo <diegoe@gnome.org> | 2007-06-06 05:54:47 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2007-06-06 05:54:47 +0800 |
commit | 2927156b3956b2d5f7b8057fa9ebbcdd9a34745b (patch) | |
tree | 917fe91c03f7f14a0e233e3a2bffb230927e023f /src/bookmarks | |
parent | d54d3f7e2d5be6c3fd5b2f11962e3106c1614153 (diff) | |
download | gsoc2013-epiphany-2927156b3956b2d5f7b8057fa9ebbcdd9a34745b.tar.gz gsoc2013-epiphany-2927156b3956b2d5f7b8057fa9ebbcdd9a34745b.tar.zst gsoc2013-epiphany-2927156b3956b2d5f7b8057fa9ebbcdd9a34745b.zip |
src/ephy-history-window.c src/bookmarks/ephy-bookmarks-editor.c
2007-06-05 Diego Escalante Urrelo <diegoe@gnome.org>
* 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
Diffstat (limited to 'src/bookmarks')
-rw-r--r-- | src/bookmarks/ephy-bookmarks-editor.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c index 7620f4a40..7eb86e24c 100644 --- a/src/bookmarks/ephy-bookmarks-editor.c +++ b/src/bookmarks/ephy-bookmarks-editor.c @@ -196,9 +196,6 @@ static const GtkActionEntry ephy_bookmark_popup_entries [] = { G_CALLBACK (cmd_open_bookmarks_in_tabs) }, { "Rename", NULL, N_("_Renameā¦"), "F2", N_("Rename the selected bookmark or topic"), G_CALLBACK (cmd_rename) }, - { "Delete", GTK_STOCK_DELETE, N_("_Delete"), NULL, - N_("Delete the selected bookmark or topic"), - G_CALLBACK (cmd_delete) }, { "Properties", GTK_STOCK_PROPERTIES, N_("_Properties"), "<alt>Return", N_("View or modify the properties of the selected bookmark"), G_CALLBACK (cmd_bookmark_properties) }, @@ -222,6 +219,9 @@ static const GtkActionEntry ephy_bookmark_popup_entries [] = { { "Paste", GTK_STOCK_PASTE, N_("_Paste"), "<control>V", N_("Paste the clipboard"), G_CALLBACK (cmd_paste) }, + { "Delete", GTK_STOCK_DELETE, N_("_Delete"), "<control>T", + N_("Delete the selected bookmark or topic"), + G_CALLBACK (cmd_delete) }, { "SelectAll", NULL, N_("Select _All"), "<control>A", N_("Select all bookmarks or text"), G_CALLBACK (cmd_select_all) }, |