fix downloading, tidyup
This commit is contained in:
parent
64edf0371e
commit
96edaa8412
1 changed files with 2 additions and 7 deletions
5
surf.c
5
surf.c
|
@ -109,9 +109,6 @@ download(WebKitDownload *o, GParamSpec *pspec, Client *c) {
|
||||||
if(status == WEBKIT_DOWNLOAD_STATUS_STARTED || status == WEBKIT_DOWNLOAD_STATUS_CREATED) {
|
if(status == WEBKIT_DOWNLOAD_STATUS_STARTED || status == WEBKIT_DOWNLOAD_STATUS_CREATED) {
|
||||||
c->progress = (int)(webkit_download_get_progress(c->download)*100);
|
c->progress = (int)(webkit_download_get_progress(c->download)*100);
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
stop(c);
|
|
||||||
}
|
|
||||||
updatetitle(c, NULL);
|
updatetitle(c, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -277,8 +274,6 @@ loadcommit(WebKitWebView *view, WebKitWebFrame *f, Client *c) {
|
||||||
|
|
||||||
void
|
void
|
||||||
loadstart(WebKitWebView *view, WebKitWebFrame *f, Client *c) {
|
loadstart(WebKitWebView *view, WebKitWebFrame *f, Client *c) {
|
||||||
if(c->download)
|
|
||||||
stop(c);
|
|
||||||
c->progress = 0;
|
c->progress = 0;
|
||||||
updatetitle(c, NULL);
|
updatetitle(c, NULL);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue