From b89e2963905b0b773e9e7b3f1f6d9746cf1f478b Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Thu, 24 Oct 2019 08:20:12 +1100 Subject: [PATCH] Set HideWhenDeactive default as true --- Wox.Infrastructure/UserSettings/Settings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wox.Infrastructure/UserSettings/Settings.cs b/Wox.Infrastructure/UserSettings/Settings.cs index 5e22ca4936..75f4393575 100644 --- a/Wox.Infrastructure/UserSettings/Settings.cs +++ b/Wox.Infrastructure/UserSettings/Settings.cs @@ -66,7 +66,7 @@ namespace Wox.Infrastructure.UserSettings } } public bool LeaveCmdOpen { get; set; } - public bool HideWhenDeactive { get; set; } + public bool HideWhenDeactive { get; set; } = true; public bool RememberLastLaunchLocation { get; set; } public bool IgnoreHotkeysOnFullscreen { get; set; }