From 3dd50c449efdc79910c2043e60db1a1e946eb565 Mon Sep 17 00:00:00 2001 From: Wouter Bolsterlee Date: Thu, 9 Nov 2006 23:09:50 +0000 Subject: Add some more F5 shortcuts to handle all the MSIE "refresh page" bindings. 2006-11-10 Wouter Bolsterlee * src/ephy-window.c: Add some more F5 shortcuts to handle all the MSIE "refresh page" bindings. Fixes bug #372906. --- src/ephy-window.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src') 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 }, -- cgit