aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-window.c
diff options
context:
space:
mode:
authorWouter Bolsterlee <wbolster@cvs.gnome.org>2006-11-10 07:09:50 +0800
committerWouter Bolsterlee <wbolster@src.gnome.org>2006-11-10 07:09:50 +0800
commit3dd50c449efdc79910c2043e60db1a1e946eb565 (patch)
treede0e0e8c6da8cd930bbe3e030673eec7b0765da6 /src/ephy-window.c
parent56a0814875d196e6e19169aae0115357081a881c (diff)
downloadgsoc2013-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.
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 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 },