Fix for bug where first overflow line was getting overwritten.

modified:   src/nms.c
This commit is contained in:
Brian Barto 2016-05-12 17:27:10 -04:00
parent 5b1cf2c362
commit 26c2507189
1 changed files with 1 additions and 1 deletions

View File

@ -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) {