Skip to content
This repository has been archived by the owner on Jan 14, 2021. It is now read-only.

Commit

Permalink
Do not echo character, backport
Browse files Browse the repository at this point in the history
  • Loading branch information
migueldeicaza committed Feb 25, 2018
1 parent 85e91f7 commit eec5a9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mainloop.cs
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ void WindowsKeyReader ()
{
while (true) {
waitForProbe.WaitOne ();
windowsKeyResult = Console.ReadKey ();
windowsKeyResult = Console.ReadKey (true);
keyReady.Set ();
}
}
Expand Down

0 comments on commit eec5a9c

Please sign in to comment.