Browse Source

Fix Windows Driver to not echo the character typed

Miguel de Icaza 7 năm trước cách đây
mục cha
commit
c132680bcc
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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 ();
 			}
 		}