From: pancake Date: Sun, 9 May 2010 20:51:26 +0000 (+0200) Subject: Fix NOBACKGROUND meaning X-Git-Url: https://git.danieliu.xyz/?p=surf.git;a=commitdiff_plain;h=424936e96c375bbfc0c624ea213112520c71534f Fix NOBACKGROUND meaning --- diff --git a/config.def.h b/config.def.h index 4792570..1110acc 100644 --- a/config.def.h +++ b/config.def.h @@ -7,7 +7,7 @@ static char *scriptfile = ".surf/script.js"; static char *cookiefile = ".surf/cookies.txt"; static char *dldir = ".surf/dl/"; static time_t sessiontime = 0; -#define NOBACKGROUND 1 +#define NOBACKGROUND 0 #define SETPROP(p) { .v = (char *[]){ "/bin/sh", "-c", \ "prop=\"`xprop -id $1 $0 | cut -d '\"' -f 2 | dmenu`\" &&" \ diff --git a/surf.c b/surf.c index 09cf840..eabaf17 100644 --- a/surf.c +++ b/surf.c @@ -584,7 +584,7 @@ newclient(void) { g_free(uri); setatom(c, findprop, ""); setatom(c, uriprop, ""); - if(!NOBACKGROUND) + if(NOBACKGROUND) webkit_web_view_set_transparent(c->view, TRUE); c->download = NULL;