[Quick Accent]Left/Right key action normal behaviour added for less than input delay(#27604)

* [Quick Accent] - Left/Right key action normal behaviour added for less than input delay.
- Showing toolbar bug is resolved.

* [Quick Accent] Used spaces instead of tabs
This commit is contained in:
gokcekantarci
2023-07-26 19:05:21 +03:00
committed by GitHub
parent eb91e8977e
commit a9d129aa5a
4 changed files with 28 additions and 2 deletions

View File

@@ -203,6 +203,18 @@ public class PowerAccent : IDisposable
break;
}
case InputType.Right:
{
SendKeys.SendWait("{RIGHT}");
break;
}
case InputType.Left:
{
SendKeys.SendWait("{LEFT}");
break;
}
case InputType.Char:
{
if (_selectedIndex != -1)