From c132680bccc437987534421c88a52ec6d8e1d635 Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Fri, 16 Feb 2018 22:22:38 -0500 Subject: [PATCH] Fix Windows Driver to not echo the character typed --- Terminal.Gui/MonoCurses/mainloop.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Terminal.Gui/MonoCurses/mainloop.cs b/Terminal.Gui/MonoCurses/mainloop.cs index daa13231d..633e9a702 100644 --- a/Terminal.Gui/MonoCurses/mainloop.cs +++ b/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 (); } }