save config settings when config window is closed

This commit is contained in:
gered 2012-05-29 11:51:30 -04:00
parent 0f7f882902
commit d1159e7737

View file

@ -22,5 +22,10 @@ public Configuration()
{
InitializeComponent();
}
protected override void OnClosing(System.ComponentModel.CancelEventArgs e)
{
Properties.Settings.Default.Save();
}
}
}