diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-08-22 00:31:49 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-08-22 00:31:49 +0800 |
commit | eaa082e9d2e5ac4fb69799596ce234c35f32aeab (patch) | |
tree | 585034a680c9da9520e2aa43b9bc0288c553888e | |
parent | af465705f7f00464a2d120d6e43e13f748a5c767 (diff) | |
download | gsoc2013-epiphany-eaa082e9d2e5ac4fb69799596ce234c35f32aeab.tar gsoc2013-epiphany-eaa082e9d2e5ac4fb69799596ce234c35f32aeab.tar.gz gsoc2013-epiphany-eaa082e9d2e5ac4fb69799596ce234c35f32aeab.tar.bz2 gsoc2013-epiphany-eaa082e9d2e5ac4fb69799596ce234c35f32aeab.tar.lz gsoc2013-epiphany-eaa082e9d2e5ac4fb69799596ce234c35f32aeab.tar.xz gsoc2013-epiphany-eaa082e9d2e5ac4fb69799596ce234c35f32aeab.tar.zst gsoc2013-epiphany-eaa082e9d2e5ac4fb69799596ce234c35f32aeab.zip |
Set accel for normal zoom, as per HIG.
2004-08-21 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-window.c:
Set accel for normal zoom, as per HIG.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-window.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2004-08-21 Christian Persch <chpe@cvs.gnome.org> + * src/ephy-window.c: + + Set accel for normal zoom, as per HIG. + +2004-08-21 Christian Persch <chpe@cvs.gnome.org> + * configure.in: * src/Makefile.am: diff --git a/src/ephy-window.c b/src/ephy-window.c index d24f13800..9204f35d1 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -180,7 +180,7 @@ static GtkActionEntry ephy_menu_entries [] = { { "ViewZoomOut", GTK_STOCK_ZOOM_OUT, N_("Zoom _Out"), "<control>minus", N_("Decrease the text size"), G_CALLBACK (window_cmd_view_zoom_out) }, - { "ViewZoomNormal", GTK_STOCK_ZOOM_100, N_("_Normal Size"), NULL, + { "ViewZoomNormal", GTK_STOCK_ZOOM_100, N_("_Normal Size"), "<control>0", N_("Use the normal text size"), G_CALLBACK (window_cmd_view_zoom_normal) }, { "ViewEncoding", NULL, N_("Text _Encoding"), NULL, |