about summary refs log tree commit diff stats
path: root/input_win.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-06-18 23:06:17 +0100
committerJames Booth <boothj5@gmail.com>2012-06-18 23:06:17 +0100
commite39494dcc910026ae6cc04d253883de3aaf671c2 (patch)
tree1e16c4c457419a4323c67f968881a9694223c981 /input_win.c
parent028a2da3f6594dd7883a18136f216ddf83470f84 (diff)
downloadprofani-tty-e39494dcc910026ae6cc04d253883de3aaf671c2.tar.gz
Added basic colour preferences loading
Diffstat (limited to 'input_win.c')
-rw-r--r--input_win.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/input_win.c b/input_win.c
index 1a1049ff..1c9fdd02 100644
--- a/input_win.c
+++ b/input_win.c
@@ -59,6 +59,7 @@ void create_input_window(void)
     getmaxyx(stdscr, rows, cols);
 
     inp_win = newwin(1, cols, rows-1, 0);
+    wbkgd(inp_win, COLOR_PAIR(1));
     keypad(inp_win, TRUE);
     wattrset(inp_win, A_BOLD);
     wmove(inp_win, 0, 1);