mirror of
https://github.com/JustArchiNET/ArchiSteamFarm
synced 2024-11-13 08:27:22 +00:00
Fix collections not triggering save
This commit is contained in:
parent
6c84f8eb4f
commit
e9d8f271a2
1 changed files with 10 additions and 0 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue