diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index 789dbdc..00a63c9 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.2.5")] -[assembly: AssemblyFileVersion("1.2.2.5")] +[assembly: AssemblyVersion("1.2.2.6")] +[assembly: AssemblyFileVersion("1.2.2.6")] diff --git a/Properties/Settings.Designer.cs b/Properties/Settings.Designer.cs index fe09809..8697395 100644 --- a/Properties/Settings.Designer.cs +++ b/Properties/Settings.Designer.cs @@ -254,7 +254,7 @@ namespace SystemTrayMenu.Properties [global::System.Configuration.UserScopedSettingAttribute()] [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] + [global::System.Configuration.DefaultSettingValueAttribute("True")] public bool OpenItemWithOneClick { get diff --git a/UserInterface/SettingsForm.cs b/UserInterface/SettingsForm.cs index 8ab5f7c..9fa1bc3 100644 --- a/UserInterface/SettingsForm.cs +++ b/UserInterface/SettingsForm.cs @@ -1105,7 +1105,7 @@ namespace SystemTrayMenu.UserInterface private void ButtonAdvancedDefault_Click(object sender, EventArgs e) { checkBoxShowInTaskbar.Checked = true; - checkBoxOpenItemWithOneClick.Checked = false; + checkBoxOpenItemWithOneClick.Checked = true; checkBoxOpenDirectoryWithOneClick.Checked = true; radioButtonSystemSettingsShowHiddenFiles.Checked = true;