Fix NOBACKGROUND meaning

This commit is contained in:
pancake 2010-05-09 22:51:26 +02:00
parent 8acc31bbde
commit 424936e96c
2 changed files with 2 additions and 2 deletions

View file

@ -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`\" &&" \

2
surf.c
View file

@ -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;