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)