[Feature] Option 'Show in Taskbar' default false (#304), version

This commit is contained in:
Markus Hofknecht 2022-01-30 14:34:53 +01:00
parent 101df84e73
commit c219720685
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.9")]
[assembly: AssemblyFileVersion("1.2.2.9")]
[assembly: AssemblyVersion("1.2.2.10")]
[assembly: AssemblyFileVersion("1.2.2.10")]

View file

@ -142,7 +142,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 ShowInTaskbar
{
get

View file

@ -1104,7 +1104,7 @@ namespace SystemTrayMenu.UserInterface
private void ButtonAdvancedDefault_Click(object sender, EventArgs e)
{
checkBoxShowInTaskbar.Checked = true;
checkBoxShowInTaskbar.Checked = false;
checkBoxOpenItemWithOneClick.Checked = true;
checkBoxOpenDirectoryWithOneClick.Checked = true;