diff options
author | David Bordoley <bordoley@msu.edu> | 2003-07-01 22:27:04 +0800 |
---|---|---|
committer | Dave Bordoley <Bordoley@src.gnome.org> | 2003-07-01 22:27:04 +0800 |
commit | 0ab1c928c782530b2d5ab0ad81cb46e5aaed539d (patch) | |
tree | 6682148ba25e369c400c97368efc7b98ec3b00ca /src/ephy-window.c | |
parent | a6a77af950d68bfea17a1911aa452e00d4b23c9d (diff) | |
download | gsoc2013-epiphany-0ab1c928c782530b2d5ab0ad81cb46e5aaed539d.tar gsoc2013-epiphany-0ab1c928c782530b2d5ab0ad81cb46e5aaed539d.tar.gz gsoc2013-epiphany-0ab1c928c782530b2d5ab0ad81cb46e5aaed539d.tar.bz2 gsoc2013-epiphany-0ab1c928c782530b2d5ab0ad81cb46e5aaed539d.tar.lz gsoc2013-epiphany-0ab1c928c782530b2d5ab0ad81cb46e5aaed539d.tar.xz gsoc2013-epiphany-0ab1c928c782530b2d5ab0ad81cb46e5aaed539d.tar.zst gsoc2013-epiphany-0ab1c928c782530b2d5ab0ad81cb46e5aaed539d.zip |
Set a label for the find toolbar item so that it doesn't have elipses.
2003-07-01 David Bordoley <bordoley@msu.edu>
* src/ephy-window.c: (setup_window):
Set a label for the find toolbar item so that it
doesn't have elipses.
Diffstat (limited to 'src/ephy-window.c')
-rw-r--r-- | src/ephy-window.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index 256eaa7cb..a920ce56f 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -661,6 +661,8 @@ setup_window (EphyWindow *window) g_object_set (action, "short_label", _("Print"), NULL); action = egg_action_group_get_action (action_group, "FileBookmarkPage"); g_object_set (action, "short_label", _("Bookmark"), NULL); + action = egg_action_group_get_action (action_group, "EditFind"); + g_object_set (action, "short_label", _("Find"), NULL); action = egg_action_group_get_action (action_group, "GoBookmarks"); g_object_set (action, "short_label", _("Bookmarks"), NULL); |