Adapt navigate()
This commit is contained in:
parent
42fdc77f5e
commit
acec16e685
10
surf.c
10
surf.c
|
@ -152,7 +152,7 @@ static void mousetargetchanged(WebKitWebView *v, WebKitHitTestResult *h,
|
||||||
guint modifiers, Client *c);
|
guint modifiers, Client *c);
|
||||||
static void loadchanged(WebKitWebView *v, WebKitLoadEvent e, Client *c);
|
static void loadchanged(WebKitWebView *v, WebKitLoadEvent e, Client *c);
|
||||||
static void loaduri(Client *c, const Arg *arg);
|
static void loaduri(Client *c, const Arg *arg);
|
||||||
static void navigate(Client *c, const Arg *arg);
|
static void navigate(Client *c, const Arg *a);
|
||||||
static Client *newclient(Client *c);
|
static Client *newclient(Client *c);
|
||||||
static WebKitWebView *newview(Client *c, WebKitWebView *rv);
|
static WebKitWebView *newview(Client *c, WebKitWebView *rv);
|
||||||
static void showview(WebKitWebView *v, Client *c);
|
static void showview(WebKitWebView *v, Client *c);
|
||||||
|
@ -836,10 +836,12 @@ loaduri(Client *c, const Arg *arg)
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
navigate(Client *c, const Arg *arg)
|
navigate(Client *c, const Arg *a)
|
||||||
{
|
{
|
||||||
int steps = *(int *)arg;
|
if (a->i < 0)
|
||||||
webkit_web_view_go_back_or_forward(c->view, steps);
|
webkit_web_view_go_back(c->view);
|
||||||
|
else if (a->i > 0)
|
||||||
|
webkit_web_view_go_forward(c->view);
|
||||||
}
|
}
|
||||||
|
|
||||||
Client *
|
Client *
|
||||||
|
|
Loading…
Reference in New Issue