diff options
author | Wouter Bolsterlee <wbolster@cvs.gnome.org> | 2006-11-10 07:09:50 +0800 |
---|---|---|
committer | Wouter Bolsterlee <wbolster@src.gnome.org> | 2006-11-10 07:09:50 +0800 |
commit | 3dd50c449efdc79910c2043e60db1a1e946eb565 (patch) | |
tree | de0e0e8c6da8cd930bbe3e030673eec7b0765da6 | |
parent | 56a0814875d196e6e19169aae0115357081a881c (diff) | |
download | gsoc2013-epiphany-3dd50c449efdc79910c2043e60db1a1e946eb565.tar gsoc2013-epiphany-3dd50c449efdc79910c2043e60db1a1e946eb565.tar.gz gsoc2013-epiphany-3dd50c449efdc79910c2043e60db1a1e946eb565.tar.bz2 gsoc2013-epiphany-3dd50c449efdc79910c2043e60db1a1e946eb565.tar.lz gsoc2013-epiphany-3dd50c449efdc79910c2043e60db1a1e946eb565.tar.xz gsoc2013-epiphany-3dd50c449efdc79910c2043e60db1a1e946eb565.tar.zst gsoc2013-epiphany-3dd50c449efdc79910c2043e60db1a1e946eb565.zip |
Add some more F5 shortcuts to handle all the MSIE "refresh page" bindings.
2006-11-10 Wouter Bolsterlee <wbolster@cvs.gnome.org>
* src/ephy-window.c:
Add some more F5 shortcuts to handle all the MSIE
"refresh page" bindings. Fixes bug #372906.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-window.c | 5 |
2 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2006-11-10 Wouter Bolsterlee <wbolster@cvs.gnome.org> + + * src/ephy-window.c: + Add some more F5 shortcuts to handle all the MSIE + "refresh page" bindings. Fixes bug #372906. + 2006-11-06 Christian Persch <chpe@cvs.gnome.org> * ChangeLog-20061106: diff --git a/src/ephy-window.c b/src/ephy-window.c index 000c0fbab..d26703cf6 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -362,7 +362,12 @@ static const struct { GDK_s, GDK_CONTROL_MASK, "FileSaveAs", FALSE }, { GDK_R, GDK_CONTROL_MASK | GDK_SHIFT_MASK, "ViewReload", FALSE }, + /* Support all the MSIE tricks as well ;) */ { GDK_F5, 0, "ViewReload", FALSE }, + { GDK_F5, GDK_CONTROL_MASK, "ViewReload", FALSE }, + { GDK_F5, GDK_SHIFT_MASK, "ViewReload", FALSE }, + { GDK_F5, GDK_CONTROL_MASK | + GDK_SHIFT_MASK, "ViewReload", FALSE }, { GDK_KP_Add, GDK_CONTROL_MASK, "ViewZoomIn", FALSE }, { GDK_KP_Subtract, GDK_CONTROL_MASK, "ViewZoomOut", FALSE }, { GDK_equal, GDK_CONTROL_MASK, "ViewZoomIn", FALSE }, |