From 3c8635676c3abeb462e06fcae24f4eeb6b7b6013 Mon Sep 17 00:00:00 2001 From: Isaac Rosenfeld Date: Fri, 1 Apr 2022 14:19:25 -0400 Subject: [PATCH] Complete settings UI --- QuietCopy/QuietCopy.csproj | 2 +- QuietCopy/SettingsMan.cs | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/QuietCopy/QuietCopy.csproj b/QuietCopy/QuietCopy.csproj index b9a99ee..883c273 100644 --- a/QuietCopy/QuietCopy.csproj +++ b/QuietCopy/QuietCopy.csproj @@ -29,7 +29,7 @@ true inst.html true - 2 + 3 1.0.0.%2a false true diff --git a/QuietCopy/SettingsMan.cs b/QuietCopy/SettingsMan.cs index 1dc527f..11e5bc2 100644 --- a/QuietCopy/SettingsMan.cs +++ b/QuietCopy/SettingsMan.cs @@ -29,11 +29,13 @@ private void specYes_CheckedChanged(object sender, EventArgs e) } void save() { - + Settings.Default.destDir = destDirTbox.Text; + Settings.Default.specDir = specYes.Checked; + Settings.Default.specDirPath = specDirPthTxtBx.Text; } void load() { - Settings.Default.destDir = destDirTbox.Text; + destDirTbox.Text = Settings.Default.destDir; } private void okBut_Click(object sender, EventArgs e)