diff options
author | pancake <nopcode.org> | 2010-05-08 21:43:53 +0200 |
---|---|---|
committer | pancake <nopcode.org> | 2010-05-08 21:43:53 +0200 |
commit | 11039e5e2b8cef231f49bef1175c4d4d94ee6ba3 (patch) | |
tree | ccf4034d3eb9edd1ab2dd207330a45a5b5c5cad7 /surf.c | |
parent | e9c9715f52afd3b4e3d512aea9d021e7e1980f63 (diff) | |
download | surf-11039e5e2b8cef231f49bef1175c4d4d94ee6ba3.tar.gz surf-11039e5e2b8cef231f49bef1175c4d4d94ee6ba3.tar.bz2 surf-11039e5e2b8cef231f49bef1175c4d4d94ee6ba3.zip |
Do not set cookie session time if set to 0
Add NOBACKGROUND config.def.h option
- requires body {background-color} in style.css
- fixes white background when loading pages
Diffstat (limited to 'surf.c')
-rw-r--r-- | surf.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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); } |