diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-08-08 04:42:44 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-08-08 04:42:44 +0800 |
commit | ff5debba3755465eaeb4766b213cd5d37ffe8e01 (patch) | |
tree | 268f4e62901c6dc5433802974cf4e60760ca8d9d /src/ephy-window.c | |
parent | 148a755f7a9ed405ac89f92d8add5804efd664c3 (diff) | |
download | gsoc2013-epiphany-ff5debba3755465eaeb4766b213cd5d37ffe8e01.tar gsoc2013-epiphany-ff5debba3755465eaeb4766b213cd5d37ffe8e01.tar.gz gsoc2013-epiphany-ff5debba3755465eaeb4766b213cd5d37ffe8e01.tar.bz2 gsoc2013-epiphany-ff5debba3755465eaeb4766b213cd5d37ffe8e01.tar.lz gsoc2013-epiphany-ff5debba3755465eaeb4766b213cd5d37ffe8e01.tar.xz gsoc2013-epiphany-ff5debba3755465eaeb4766b213cd5d37ffe8e01.tar.zst gsoc2013-epiphany-ff5debba3755465eaeb4766b213cd5d37ffe8e01.zip |
Add "delete text" command.
2006-08-07 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-window.c:
* src/window-commands.c:
* src/window-commands.h:
Add "delete text" command.
Diffstat (limited to 'src/ephy-window.c')
-rw-r--r-- | src/ephy-window.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index 8f4678d99..aeff35da7 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -171,6 +171,9 @@ static const GtkActionEntry ephy_menu_entries [] = { { "EditPaste", GTK_STOCK_PASTE, N_("_Paste"), "<control>V", N_("Paste clipboard"), G_CALLBACK (window_cmd_edit_paste) }, + { "EditDelete", GTK_STOCK_DELETE, NULL, NULL, + N_("Delete text"), + G_CALLBACK (window_cmd_edit_delete) }, { "EditSelectAll", NULL, N_("Select _All"), "<control>A", N_("Select the entire page"), G_CALLBACK (window_cmd_edit_select_all) }, |