From 81dd170b625ff116a3997a90c1c4db26b4da1765 Mon Sep 17 00:00:00 2001 From: Markus Hofknecht Date: Mon, 6 Jun 2022 14:00:17 +0200 Subject: [PATCH] [Feature] Option OpenDirectoryWithOneClick default false (#392), 1.2.9.12 --- Properties/AssemblyInfo.cs | 4 ++-- Properties/Settings.Designer.cs | 2 +- UserInterface/SettingsForm.cs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index 21c5939..a9584c1 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -39,5 +39,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.2.9.11")] -[assembly: AssemblyFileVersion("1.2.9.11")] +[assembly: AssemblyVersion("1.2.9.12")] +[assembly: AssemblyFileVersion("1.2.9.12")] diff --git a/Properties/Settings.Designer.cs b/Properties/Settings.Designer.cs index 20677b8..34c704e 100644 --- a/Properties/Settings.Designer.cs +++ b/Properties/Settings.Designer.cs @@ -302,7 +302,7 @@ namespace SystemTrayMenu.Properties [global::System.Configuration.UserScopedSettingAttribute()] [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("true")] + [global::System.Configuration.DefaultSettingValueAttribute("false")] public bool OpenDirectoryWithOneClick { get diff --git a/UserInterface/SettingsForm.cs b/UserInterface/SettingsForm.cs index bf6dc27..e08943d 100644 --- a/UserInterface/SettingsForm.cs +++ b/UserInterface/SettingsForm.cs @@ -1208,7 +1208,7 @@ namespace SystemTrayMenu.UserInterface checkBoxShowInTaskbar.Checked = true; checkBoxSendHotkeyInsteadKillOtherInstances.Checked = false; checkBoxOpenItemWithOneClick.Checked = true; - checkBoxOpenDirectoryWithOneClick.Checked = true; + checkBoxOpenDirectoryWithOneClick.Checked = false; radioButtonSystemSettingsShowHiddenFiles.Checked = true; radioButtonNeverShowHiddenFiles.Checked = false;