From 1ad3285f56d270e65646e55cc9094f49f94624f6 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Thu, 23 Jan 2014 23:06:19 +1100 Subject: [PATCH] Use unused line at the top of the log window which often gets stuck unchanging. --- sgminer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sgminer.c b/sgminer.c index c0e49494..3aaba7f9 100644 --- a/sgminer.c +++ b/sgminer.c @@ -2279,7 +2279,7 @@ static void check_winsizes(void) statusy = LINES - 2; else statusy = logstart; - logcursor = statusy + 1; + logcursor = statusy; wresize(statuswin, statusy, x); getmaxyx(mainwin, y, x); y -= logcursor;