From a009f0422ff0c7292cb40009432fcad1ad690d21 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Sun, 19 May 2013 21:30:16 +1000 Subject: [PATCH] Must unlock curses as well in logwin_update. --- cgminer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cgminer.c b/cgminer.c index f92d878b..6ec095ea 100644 --- a/cgminer.c +++ b/cgminer.c @@ -2221,6 +2221,7 @@ void logwin_update(void) if (curses_active_locked()) { touchwin(logwin); wrefresh(logwin); + unlock_curses(); } } #endif