s/zoompage/zoom/
authorEnno Boland (tox) <tox@s01.de>
Mon, 7 Sep 2009 07:51:51 +0000 (09:51 +0200)
committerEnno Boland (tox) <tox@s01.de>
Mon, 7 Sep 2009 07:51:51 +0000 (09:51 +0200)
config.h
surf.c

index a46843c..151bbf4 100644 (file)
--- a/config.h
+++ b/config.h
@@ -17,9 +17,10 @@ static Key keys[] = {
     { 0,                    GDK_Return, hideurl,        {0},            URLBAR },
     { GDK_CONTROL_MASK,     GDK_p,      clipboard,      {.b = TRUE },   BROWSER },
     { GDK_CONTROL_MASK,     GDK_y,      clipboard,      {.b = FALSE},   BROWSER },
-    { GDK_CONTROL_MASK,     GDK_plus,   zoompage,       {.i = +1 },     BROWSER },
-    { GDK_CONTROL_MASK,     GDK_minus,  zoompage,       {.i = -1 },     BROWSER },
-    { GDK_CONTROL_MASK,     GDK_0,      zoompage,       {.i = 0 },      BROWSER },
+    { GDK_CONTROL_MASK,     GDK_equal,  zoom,           {.i = +1 },     BROWSER },
+    { GDK_CONTROL_MASK,     GDK_plus,   zoom,           {.i = +1 },     BROWSER },
+    { GDK_CONTROL_MASK,     GDK_minus,  zoom,           {.i = -1 },     BROWSER },
+    { GDK_CONTROL_MASK,     GDK_0,      zoom,           {.i = 0 },      BROWSER },
     { GDK_CONTROL_MASK,     GDK_l,      navigate,       {.i = +1},      BROWSER },
     { GDK_CONTROL_MASK,     GDK_h,      navigate,       {.i = -1},      BROWSER },
     { 0,                    GDK_Escape, stop,           {0},            BROWSER },
diff --git a/surf.c b/surf.c
index 47005b7..f43d848 100644 (file)
--- a/surf.c
+++ b/surf.c
@@ -108,7 +108,7 @@ static void stop(Client *c, const Arg *arg);
 static void titlechange(WebKitWebView* view, WebKitWebFrame* frame, const gchar* title, Client *c);
 static void usage();
 static void updatetitle(Client *c, const gchar *title);
-static void zoompage(Client *c, const Arg *arg);
+static void zoom(Client *c, const Arg *arg);
 
 #include "config.h"
 
@@ -563,7 +563,7 @@ updatetitle(Client *c, const char *title) {
 }
 
 void
-zoompage(Client *c, const Arg *arg) {
+zoom(Client *c, const Arg *arg) {
        if(arg->i < 0)          /* zoom out */
                webkit_web_view_zoom_out(c->view);
        else if(arg->i > 0)     /* zoom in */