From 6b972b52cd3b832433c85dcd2a304e7306ddd548 Mon Sep 17 00:00:00 2001 From: Markus Hofknecht Date: Thu, 27 Jan 2022 20:44:20 +0100 Subject: [PATCH] [Feature] Option OpenItemWithOneClick default true instead false (#300), version 1.2.2.6 --- 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 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;