aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-window.c
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@it.gnome.org>2003-02-08 19:23:32 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-02-08 19:23:32 +0800
commitfd8fbb88aca38f094ef80e223abfa17e8505e624 (patch)
treea31816f8d2e80fd2503bdfee91a402473d756d35 /src/ephy-window.c
parent9731a68ae462cf67c4857d142c060b16d0d2db53 (diff)
downloadgsoc2013-epiphany-fd8fbb88aca38f094ef80e223abfa17e8505e624.tar
gsoc2013-epiphany-fd8fbb88aca38f094ef80e223abfa17e8505e624.tar.gz
gsoc2013-epiphany-fd8fbb88aca38f094ef80e223abfa17e8505e624.tar.bz2
gsoc2013-epiphany-fd8fbb88aca38f094ef80e223abfa17e8505e624.tar.lz
gsoc2013-epiphany-fd8fbb88aca38f094ef80e223abfa17e8505e624.tar.xz
gsoc2013-epiphany-fd8fbb88aca38f094ef80e223abfa17e8505e624.tar.zst
gsoc2013-epiphany-fd8fbb88aca38f094ef80e223abfa17e8505e624.zip
Add a go button to the toolbar editor. The icon is duped with default
2003-02-08 Marco Pesenti Gritti <marco@it.gnome.org> * data/ui/epiphany-toolbar.xml.in: * lib/widgets/ephy-editable-toolbar.c: (add_action): * src/ephy-window.c: * src/window-commands.c: (window_cmd_load_location): * src/window-commands.h: Add a go button to the toolbar editor. The icon is duped with default favicon. Would be nice to find something better for one of them (I'm not sure if the concept of jump to is good for favicon actually). Rename FileNewWindow to FileNewBrowser also in toolbar configuration file.
Diffstat (limited to 'src/ephy-window.c')
-rw-r--r--src/ephy-window.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c
index 60e1da07b..6cc3d3f6c 100644
--- a/src/ephy-window.c
+++ b/src/ephy-window.c
@@ -197,6 +197,11 @@ static EggActionGroupEntry ephy_menu_entries [] = {
{ "HelpAbout", N_("_About"), GNOME_STOCK_ABOUT, NULL,
N_("Display credits for the web browser creators"),
G_CALLBACK (window_cmd_help_about), NULL },
+
+ /* Toolbar only */
+ { "LoadLocation", N_("_Go"), GTK_STOCK_JUMP_TO, NULL,
+ N_("Type a web address or a word in the field on the left, then click Go"),
+ G_CALLBACK (window_cmd_load_location), NULL },
};
static guint ephy_menu_n_entries = G_N_ELEMENTS (ephy_menu_entries);