Fix collections not triggering save

This commit is contained in:
JustArchi 2016-04-12 18:42:16 +02:00
parent 6c84f8eb4f
commit e9d8f271a2

View file

@ -22,6 +22,7 @@
*/
using System;
using System.Windows.Forms;
namespace ConfigGenerator {
@ -68,5 +69,14 @@ namespace ConfigGenerator {
}
}
}
protected override void OnGotFocus(EventArgs e) {
if (e == null) {
return;
}
base.OnGotFocus(e);
ASFConfig.Save();
}
}
}