Skip to content

Commit

Permalink
And another bug fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitris authored and Dimitris committed Jul 14, 2017
1 parent 9065662 commit 1266f99
Show file tree
Hide file tree
Showing 8 changed files with 170 additions and 164 deletions.
328 changes: 165 additions & 163 deletions Northbridge-SaveManager/BaseForm.Designer.cs

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion Northbridge-SaveManager/BaseForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,16 @@ private void BrowseButton_Click(object sender, EventArgs e)
private void LocationBackup_TextChanged(object sender, EventArgs e)
{
RestoreFolderPicker.SelectedPath = Settings.Default.AutoBackupLocation;
Settings.Default.AutoBackupLocation = LocationBackup.Text;
//Commented this line as it is redundant (The text box is tied to the LocationBackup setting).
//Un-comment that line below if needed.
//Settings.Default.AutoBackupLocation = LocationBackup.Text;
Settings.Default.Save();
}

private void AutoBackupCheckbox_CheckedChanged(object sender, EventArgs e)
{
//Commented this line as well as it's redundant (the checkbox is tied to the AutoBackupEnabled setting).
//Un-comment that line below if needed.
//Settings.Default.AutoBackupEnabled = AutoBackupCheckbox.Enabled;
BrowseButton.Enabled = AutoBackupCheckbox.Enabled;
LocationBackup.Enabled = AutoBackupCheckbox.Enabled;
Expand Down
Binary file modified Northbridge-SaveManager/bin/Release/NorthbridgeSubsystem.exe
Binary file not shown.
Binary file modified Northbridge-SaveManager/bin/Release/NorthbridgeSubsystem.pdb
Binary file not shown.
Binary file modified OpenSettings/bin/Release/OpenSettings.exe
Binary file not shown.
Binary file modified OpenSettings/bin/Release/OpenSettings.pdb
Binary file not shown.
Binary file modified OpenSettings/obj/Release/OpenSettings.exe
Binary file not shown.
Binary file modified OpenSettings/obj/Release/OpenSettings.pdb
Binary file not shown.

0 comments on commit 1266f99

Please sign in to comment.