diff --git a/PowerAccent.Core/PowerAccent.cs b/PowerAccent.Core/PowerAccent.cs index 2a1616f..f688ffc 100644 --- a/PowerAccent.Core/PowerAccent.cs +++ b/PowerAccent.Core/PowerAccent.cs @@ -45,7 +45,7 @@ private bool PowerAccent_KeyDown(object sender, KeyboardListener.RawKeyEventArgs { _visible = true; _characters = WindowsFunctions.IsCapitalState() ? ToUpper(_settingService.GetLetterKey(letterPressed.Value)) : _settingService.GetLetterKey(letterPressed.Value); - Task.Delay(200).ContinueWith(t => + Task.Delay(_settingService.InputTime).ContinueWith(t => { if (_visible) OnChangeDisplay?.Invoke(true, _characters);