From 44511e25490498bc2a38adcfda1f4f6e25805d7a Mon Sep 17 00:00:00 2001 From: "Enno Boland (tox)" Date: Fri, 11 Sep 2009 08:12:08 +0200 Subject: [PATCH] unfocus should return false; renaming cookie-file. --- surf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/surf.c b/surf.c index e8f9673..d1d11ec 100644 --- a/surf.c +++ b/surf.c @@ -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 -- 2.20.1