about summary refs log tree commit diff stats
path: root/input_win.c
diff options
context:
space:
mode:
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);