From 262992f75792ba625a34185418242bff7e2a73ea Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Fri, 10 Aug 2018 21:43:11 -0500 Subject: [PATCH] Change behavior of hotkeys timer --- DS4Windows/DS4Forms/DS4Form.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/DS4Windows/DS4Forms/DS4Form.cs b/DS4Windows/DS4Forms/DS4Form.cs index 23c40e0..4552ae9 100644 --- a/DS4Windows/DS4Forms/DS4Form.cs +++ b/DS4Windows/DS4Forms/DS4Form.cs @@ -311,6 +311,7 @@ namespace DS4Windows btnStartStop.Text = Properties.Resources.StartText; hotkeysTimer.Elapsed += Hotkeys; + hotkeysTimer.AutoReset = false; if (SwipeProfiles) { hotkeysTimer.Start(); @@ -601,6 +602,8 @@ namespace DS4Windows bat = null; runningBat = false; } + + hotkeysTimer.Start(); } private void CheckAutoProfiles(object sender, EventArgs e)