Skip to content
Snippets Groups Projects
Commit 59683973 authored by deuce's avatar deuce
Browse files

When resuming curses, call getch() (10ms timeout) to clear the input buffer.

Prevents arrow-key weirdness in SyncTERM (and presumably others).
parent c1d3d237
No related branches found
No related tags found
No related merge requests found
......@@ -654,6 +654,7 @@ void curs_resume(void)
raw();
timeout(10);
refresh();
getch();
}
int curs_initciolib(long inmode)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment