diff options
Diffstat (limited to 'src/screen_utils.c')
-rw-r--r-- | src/screen_utils.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/screen_utils.c b/src/screen_utils.c index 311c744af..21da92e1a 100644 --- a/src/screen_utils.c +++ b/src/screen_utils.c @@ -58,7 +58,6 @@ screen_getch(WINDOW *w, const char *prompt) echo(); curs_set(1); - timeout(-1); while( (key=my_wgetch(w)) == ERR ) ; @@ -71,7 +70,6 @@ screen_getch(WINDOW *w, const char *prompt) noecho(); curs_set(0); - timeout(SCREEN_TIMEOUT); return key; } |