Merge pull request #150 from Chax1/fix/Checkbox

Fix the checkbox inside of Settings
This commit is contained in:
Fenopy
2023-05-16 06:45:14 -05:00
committed by GitHub

View File

@@ -154,7 +154,7 @@ namespace AndroidSideloader
private void nodevicemodeBox_CheckedChanged(object sender, EventArgs e)
{
Properties.Settings.Default.nodevicemode = nodevicemodeBox.Checked;
if (!deleteAfterInstallCheckBox.Checked)
if (!nodevicemodeBox.Checked)
{
deleteAfterInstallCheckBox.Checked = true;
Properties.Settings.Default.deleteAllAfterInstall = true;