소스 검색

ensure higher priority tasks are run before keyboard events.

Dan Walmsley 7 년 전
부모
커밋
2b081c516f
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      src/Avalonia.Native/WindowImplBase.cs

+ 4 - 0
src/Avalonia.Native/WindowImplBase.cs

@@ -184,6 +184,8 @@ namespace Avalonia.Native
 
         public bool RawTextInputEvent(uint timeStamp, string text)
         {
+            Dispatcher.UIThread.RunJobs(DispatcherPriority.Input + 1);
+
             var args = new RawTextInputEventArgs(_keyboard, timeStamp, text);
 
             Input?.Invoke(args);
@@ -193,6 +195,8 @@ namespace Avalonia.Native
 
         public bool RawKeyEvent(AvnRawKeyEventType type, uint timeStamp, AvnInputModifiers modifiers, uint key)
         {
+            Dispatcher.UIThread.RunJobs(DispatcherPriority.Input + 1);
+
             var args = new RawKeyEventArgs(_keyboard, timeStamp, (RawKeyEventType)type, (Key)key, (InputModifiers)modifiers);
 
             Input?.Invoke(args);