From 956ed26da5bb94afcd6cd4d4e7d70889179624fa Mon Sep 17 00:00:00 2001 From: Daniel Carl Date: Sat, 8 Jun 2019 23:45:21 +0200 Subject: [PATCH] Give --incognito option also to new spawned instances #562. --- src/main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.c b/src/main.c index 15ca9f9..28f17e6 100644 --- a/src/main.c +++ b/src/main.c @@ -1046,6 +1046,9 @@ static void spawn_new_instance(const char *uri) cmd[i++] = xid; } #endif + if (vb.incognito) { + cmd[i++] = "-i"; + } if (vb.profile) { cmd[i++] = "-p"; cmd[i++] = vb.profile; -- 2.20.1