From b5cb9ce67e7491bffaa1c599dec17dc8837542fe Mon Sep 17 00:00:00 2001 From: 2dust <31833384+2dust@users.noreply.github.com> Date: Fri, 5 Apr 2024 17:24:53 +0800 Subject: [PATCH] Set autoHideStartup default value is false --- v2rayN/v2rayN/Models/ConfigItems.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2rayN/v2rayN/Models/ConfigItems.cs b/v2rayN/v2rayN/Models/ConfigItems.cs index 729d024f..5e3b8d58 100644 --- a/v2rayN/v2rayN/Models/ConfigItems.cs +++ b/v2rayN/v2rayN/Models/ConfigItems.cs @@ -122,7 +122,7 @@ namespace v2rayN.Models public int currentFontSize { get; set; } public bool enableDragDropSort { get; set; } public bool doubleClick2Activate { get; set; } - public bool autoHideStartup { get; set; } = true; + public bool autoHideStartup { get; set; } public string mainMsgFilter { get; set; } public List mainColumnItem { get; set; } }