diff options
author | Enno Boland (tox) <tox@s01.de> | 2009-09-11 08:12:08 +0200 |
---|---|---|
committer | Enno Boland (tox) <tox@s01.de> | 2009-09-11 08:12:08 +0200 |
commit | 44511e25490498bc2a38adcfda1f4f6e25805d7a (patch) | |
tree | 4932514718021c90343458024f66b0a773e0caa4 /surf.c | |
parent | 38a098c81d1b9044e50dd80fa1794b3f63f29559 (diff) | |
download | surf-44511e25490498bc2a38adcfda1f4f6e25805d7a.tar.gz surf-44511e25490498bc2a38adcfda1f4f6e25805d7a.tar.bz2 surf-44511e25490498bc2a38adcfda1f4f6e25805d7a.zip |
unfocus should return false; renaming cookie-file.
Diffstat (limited to 'surf.c')
-rw-r--r-- | surf.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -601,7 +601,7 @@ setup(void) { /* cookie persistance */ s = webkit_get_default_session(); - name = g_build_filename(workdir, "cookies.jar", NULL); + name = g_build_filename(workdir, "cookies.txt", NULL); cookiejar = soup_cookie_jar_text_new(name, FALSE); soup_session_add_feature(s, SOUP_SESSION_FEATURE(cookiejar)); } @@ -663,7 +663,7 @@ gboolean unfocusbar(GtkWidget *w, GdkEventFocus *e, Client *c) { hidesearch(c, NULL); hideurl(c, NULL); - return TRUE; + return FALSE; } void |