summaryrefslogtreecommitdiff
path: root/spedytor/Form1.cs
diff options
context:
space:
mode:
Diffstat (limited to 'spedytor/Form1.cs')
-rw-r--r--spedytor/Form1.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/spedytor/Form1.cs b/spedytor/Form1.cs
index 1deb7f7..ce82b80 100644
--- a/spedytor/Form1.cs
+++ b/spedytor/Form1.cs
@@ -389,6 +389,7 @@ namespace spedytor
{
this.setSelectedDBs(Properties.OptionSettings.Default.DB_NAMES.Cast<string>().ToList());
this.cSend.Checked = Properties.OptionSettings.Default.SEND_FLAG;
+ this.nInterval.Value = Properties.OptionSettings.Default.RUN_INTERVAL;
}
private void saveSettings()
@@ -400,6 +401,7 @@ namespace spedytor
}
Properties.OptionSettings.Default.DB_NAMES.Clear();
Properties.OptionSettings.Default.DB_NAMES.AddRange(this.selectedDBs.ToArray());
+ Properties.OptionSettings.Default.RUN_INTERVAL = this.nInterval.Value;
Properties.OptionSettings.Default.Save();
}