소스 검색

Fix Windows Driver to not echo the character typed

Miguel de Icaza 7 년 전
부모
커밋
c132680bcc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Terminal.Gui/MonoCurses/mainloop.cs

+ 1 - 1
Terminal.Gui/MonoCurses/mainloop.cs

@@ -318,7 +318,7 @@ namespace Mono.Terminal {
 		{
 			while (true) {
 				waitForProbe.WaitOne ();
-				windowsKeyResult = Console.ReadKey ();
+				windowsKeyResult = Console.ReadKey (true);
 				keyReady.Set ();
 			}
 		}