diff options
-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 }, |