Added integrate with windows context menu settings

This commit is contained in:
Alexander 2018-12-17 13:02:24 +02:00
parent b545efaed4
commit fffae6b37f

View file

@ -36,6 +36,7 @@ private void SettingsForm_Load(object sender, EventArgs e)
checkBox4.Checked = ps.AutoLock;
checkBox5.Checked = ps.AutoSave;
checkBox6.Checked = ps.SendTo;
checkBox7.Checked = ps.MenuIntegrate;
if (ps.TheSalt != "")
{
@ -79,8 +80,9 @@ private void SetSettings(string value)
ps.AutoLock = checkBox4.Checked;
ps.AutoSave = checkBox5.Checked;
ps.SendTo = checkBox6.Checked;
ps.MenuIntegrate = checkBox7.Checked;
ps.Save();
publicVar.settingsChanged = true;
PublicVar.settingsChanged = true;
this.Hide();
}
@ -98,6 +100,7 @@ private void SetSettings(string value)
checkBox4.Checked = false;
checkBox5.Checked = true;
checkBox6.Checked = false;
checkBox7.Checked = false;
}
}