[Feature] Option OpenItemWithOneClick default true instead false (#300), version 1.2.2.6

This commit is contained in:
Markus Hofknecht 2022-01-27 20:44:20 +01:00
parent a43c6e0d9c
commit 6b972b52cd
3 changed files with 4 additions and 4 deletions

View file

@ -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")]

View file

@ -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

View file

@ -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;