diff options
author | Diego Escalante Urrelo <diegoe@gnome.org> | 2009-09-05 09:50:20 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@gnome.org> | 2009-09-05 09:50:20 +0800 |
commit | c1199f2b921e60cadc26e350f4f6590f84197d3b (patch) | |
tree | 5112ad607429eb7cbea009ad279f9cabe5abaf50 | |
parent | 9bea0a053eb81471dedbcc6f1e09d91464e09673 (diff) | |
download | gsoc2013-epiphany-c1199f2b921e60cadc26e350f4f6590f84197d3b.tar.gz gsoc2013-epiphany-c1199f2b921e60cadc26e350f4f6590f84197d3b.tar.zst gsoc2013-epiphany-c1199f2b921e60cadc26e350f4f6590f84197d3b.zip |
ephy-window: make <ctrl>KP_0 an alias to <ctrl>0
Bug 573624 - Reset font size with ctrl+0 from num block
-rw-r--r-- | src/ephy-window.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index 8407104d2..d4d29c297 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -367,6 +367,7 @@ static const struct { GDK_KP_Add, GDK_CONTROL_MASK, "ViewZoomIn", FALSE }, { GDK_KP_Subtract, GDK_CONTROL_MASK, "ViewZoomOut", FALSE }, { GDK_equal, GDK_CONTROL_MASK, "ViewZoomIn", FALSE }, + { GDK_KP_0, GDK_CONTROL_MASK, "ViewZoomNormal", FALSE }, /* These keys are a bit strange: when pressed with no modifiers, they emit * KP_PageUp/Down Control; when pressed with Control+Shift they are KP_9/3, * when NumLock is on they are KP_9/3 and with NumLock and Control+Shift |