Browse Source

Fix Windows Driver to not echo the character typed

Miguel de Icaza 7 years ago
parent
commit
c132680bcc
1 changed files with 1 additions and 1 deletions
  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 ();
 			}
 		}