changeset 35:c725b0dc6268

Fix the editline being 2 lines instead of 3.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 06 Aug 2008 01:02:57 +0300
parents f5d335771b16
children 34864d021d7e
files nnchat.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/nnchat.c	Tue Aug 05 14:39:21 2008 +0300
+++ b/nnchat.c	Wed Aug 06 01:02:57 2008 +0300
@@ -1092,7 +1092,7 @@
 		
 		mainWin = newwin(LINES - 4, COLS, 0, 0);
 		statusWin = newwin(1, COLS, LINES - 4, 0);
-		editWin = newwin(2, COLS, LINES - 3, 0);
+		editWin = newwin(3, COLS, LINES - 3, 0);
 		
 		if (mainWin == NULL || statusWin == NULL || editWin == NULL) {
 			THERR("Could not create ncurses windows!\n");