Adding small fix by Alex Puterbaugh. Thanks.

This commit is contained in:
Enno Boland (tox) 2010-05-02 10:59:28 +02:00
parent 4b1b1b8a20
commit e9c9715f52
2 changed files with 6 additions and 7 deletions

View File

@ -17,7 +17,7 @@ LIBS = -L/usr/lib -lc ${GTKLIB} -lgthread-2.0
# flags # flags
CPPFLAGS = -DVERSION=\"${VERSION}\" CPPFLAGS = -DVERSION=\"${VERSION}\"
CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} CFLAGS = -std=c99 -pedantic -Wall -O0 -g ${INCS} ${CPPFLAGS}
LDFLAGS = -g ${LIBS} LDFLAGS = -g ${LIBS}
# Solaris # Solaris

11
surf.c
View File

@ -254,7 +254,7 @@ void
download(Client *c, const Arg *arg) { download(Client *c, const Arg *arg) {
char *uri; char *uri;
WebKitNetworkRequest *r; WebKitNetworkRequest *r;
WebKitDownload *dl; WebKitDownload *dl;
if(arg->v) if(arg->v)
uri = (char *)arg->v; uri = (char *)arg->v;
@ -420,18 +420,17 @@ linkhover(WebKitWebView *v, const char* t, const char* l, Client *c) {
void void
loadstatuschange(WebKitWebView *view, GParamSpec *pspec, Client *c) { loadstatuschange(WebKitWebView *view, GParamSpec *pspec, Client *c) {
if(c->download)
stop(c, NULL);
switch(webkit_web_view_get_load_status (c->view)) { switch(webkit_web_view_get_load_status (c->view)) {
case WEBKIT_LOAD_COMMITTED: case WEBKIT_LOAD_COMMITTED:
setatom(c, uriprop, geturi(c)); if(c->download)
stop(c, NULL);
setatom(c, uriprop, geturi(c));
break; break;
case WEBKIT_LOAD_FINISHED: case WEBKIT_LOAD_FINISHED:
c->progress = 0; c->progress = 0;
update(c); update(c);
break; break;
case WEBKIT_LOAD_PROVISIONAL: default:
case WEBKIT_LOAD_FIRST_VISUALLY_NON_EMPTY_LAYOUT:
break; break;
} }
} }