X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=surf.c;h=652889b9812435a03c662063b5673e95d18d6a89;hb=11039e5e2b8cef231f49bef1175c4d4d94ee6ba3;hp=448c762604048312b2cab950dc5a2091c348562d;hpb=e9c9715f52afd3b4e3d512aea9d021e7e1980f63;p=surf.git diff --git a/surf.c b/surf.c index 448c762..652889b 100644 --- a/surf.c +++ b/surf.c @@ -567,6 +567,8 @@ newclient(void) { g_free(uri); setatom(c, findprop, ""); setatom(c, uriprop, ""); + if(!NOBACKGROUND) + webkit_web_view_set_transparent(c->view, TRUE); c->download = NULL; c->title = NULL; @@ -705,7 +707,7 @@ setcookie(SoupCookie *c) { SoupDate *e; SoupCookieJar *j = soup_cookie_jar_text_new(cookiefile, FALSE); c = soup_cookie_copy(c); - if(c->expires == NULL) { + if(c->expires == NULL && sessiontime) { e = soup_date_new_from_time_t(time(NULL) + sessiontime); soup_cookie_set_expires(c, e); }