From 59efa6f0ad34cbcb61e26b36d986730430658ab6 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Thu, 8 Jul 2021 08:49:00 +1000 Subject: [PATCH] [client] config: default `minimizeOnFocusLoss` to off --- client/src/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/config.c b/client/src/config.c index 702df6a1..4617e323 100644 --- a/client/src/config.c +++ b/client/src/config.c @@ -198,7 +198,7 @@ static struct Option options[] = .name = "minimizeOnFocusLoss", .description = "Minimize window on focus loss", .type = OPTION_TYPE_BOOL, - .value.x_bool = true, + .value.x_bool = false, }, { .module = "win",