From 26c2507189c03e9464ef529fd9ea47f626dfbc12 Mon Sep 17 00:00:00 2001 From: Brian Barto Date: Thu, 12 May 2016 17:27:10 -0400 Subject: [PATCH] Fix for bug where first overflow line was getting overwritten. modified: src/nms.c --- src/nms.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nms.c b/src/nms.c index ed7b27b..28cfb1a 100644 --- a/src/nms.c +++ b/src/nms.c @@ -259,7 +259,7 @@ char nms_exec(NmsArgs *args) { attron(A_BOLD); if (has_colors()) attron(COLOR_PAIR(1)); - prevRow = list_pointer->row; + prevRow = list_pointer->row - 1; scroll(stdscr); while (list_pointer != NULL) { while (list_pointer->row > prevRow) {