diff options
author | Timo Sirainen <cras@irssi.org> | 2001-09-10 15:34:49 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-09-10 15:34:49 +0000 |
commit | 9dd057825bbfe14a17133e0aa3b01f2089a71486 (patch) | |
tree | 5f1a5195a6dd34a061d730695f4c2382e114f039 | |
parent | be6cf00ebb382bb4055f1069939328a560df517a (diff) | |
download | irssi-9dd057825bbfe14a17133e0aa3b01f2089a71486.zip |
Disabled using idcok() which caused redrawing problems with netbsd.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1782 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r-- | src/fe-text/screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-text/screen.c b/src/fe-text/screen.c index 5d3e1f38..288f8e02 100644 --- a/src/fe-text/screen.c +++ b/src/fe-text/screen.c @@ -158,7 +158,7 @@ static int init_curses(void) #endif raw(); noecho(); idlok(stdscr, 1); #ifdef HAVE_CURSES_IDCOK - idcok(stdscr, 1); + /*idcok(stdscr, 1); - disabled currently, causes redrawing problems with NetBSD */ #endif intrflush(stdscr, FALSE); nodelay(stdscr, TRUE); |