From 4d5763f9a6fed9720a37b420249befbe59ad4715 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Trzci=C5=84ski?= Date: Sat, 10 Dec 2022 18:06:35 +0100 Subject: [PATCH] Tune `PowerControl` key repeats --- PowerControl/Controller.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PowerControl/Controller.cs b/PowerControl/Controller.cs index a4e23b8..57c1cbb 100644 --- a/PowerControl/Controller.cs +++ b/PowerControl/Controller.cs @@ -19,8 +19,8 @@ namespace PowerControl { public const String Title = "Power Control"; public readonly String TitleWithVersion = Title + " v" + Application.ProductVersion.ToString(); - public const int KeyPressRepeatTime = 300; - public const int KeyPressNextRepeatTime = 150; + public const int KeyPressRepeatTime = 400; + public const int KeyPressNextRepeatTime = 90; Container components = new Container(); System.Windows.Forms.NotifyIcon notifyIcon;