X13 tweaks

This commit is contained in:
Serge
2023-06-29 18:18:42 +02:00
parent 8a3708e850
commit 3fb61d3bf1
5 changed files with 12 additions and 13 deletions

View File

@@ -19,7 +19,7 @@ namespace GHelper.Mode
public ModeControl()
{
reapplyTimer = new System.Timers.Timer(30 * 1000);
reapplyTimer = new System.Timers.Timer(AppConfig.GetMode("reapply_time", 30) * 1000);
reapplyTimer.Elapsed += ReapplyTimer_Elapsed;
reapplyTimer.Enabled = false;
}