diff --git a/source/StopWatch/Settings/Settings.cs b/source/StopWatch/Settings/Settings.cs index 462d76c..0757cee 100644 --- a/source/StopWatch/Settings/Settings.cs +++ b/source/StopWatch/Settings/Settings.cs @@ -176,7 +176,13 @@ public void Save() Properties.Settings.Default.CheckForUpdate = CheckForUpdate; - Properties.Settings.Default.Save(); + try + { + Properties.Settings.Default.Save(); + } + catch + { + } } }