Commit a009f0422ff0c7292cb40009432fcad1ad690d21

Con Kolivas 2013-05-19T21:30:16

Must unlock curses as well in logwin_update.

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/cgminer.c b/cgminer.c
index f92d878..6ec095e 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