Fixes #847. Since the timeout issue are fixed there is no need to use tokenSource.Cancel but just reset the eventReady.

This commit is contained in:
BDisp
2020-08-03 11:57:25 +01:00
parent e658f08228
commit 4b57401382

View File

@@ -628,9 +628,9 @@ namespace Terminal.Gui {
void IMainLoopDriver.Wakeup ()
{
tokenSource.Cancel ();
//eventReady.Reset ();
//eventReady.Set ();
//tokenSource.Cancel ();
eventReady.Reset ();
eventReady.Set ();
}
bool IMainLoopDriver.EventsPending (bool wait)