summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Quentin Rameau 2014-02-05 16:58:23 +0100
committerGravatar Christoph Lohmann 2014-02-05 20:17:26 +0100
commit4b623bd28ae1ffdecdbc62f68b90340311ad5adc (patch)
tree65ee3bf9c88d5b089d5d2ce6eb0315cbfd21d712
parentChange the accept no third party in the doc to the right meaning. (diff)
Keep cookie policies for new windows
Signed-off-by: Christoph Lohmann <20h@r-36.net>
-rw-r--r--surf.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/surf.c b/surf.c
index e967672..ba01958 100644
--- a/surf.c
+++ b/surf.c
@@ -910,11 +910,13 @@ newclient(void) {
static void
newwindow(Client *c, const Arg *arg, gboolean noembed) {
guint i = 0;
- const char *cmd[14], *uri;
+ const char *cmd[16], *uri;
const Arg a = { .v = (void *)cmd };
char tmp[64];
cmd[i++] = argv0;
+ cmd[i++] = "-a";
+ cmd[i++] = cookiepolicies;
if(!enablescrollbars)
cmd[i++] = "-b";
if(embed && !noembed) {