about summary refs log tree commit diff stats
path: root/input_win.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-02-28 02:00:34 +0000
committerJames Booth <boothj5@gmail.com>2012-02-28 02:00:34 +0000
commitef4c7ce55fcbb6c5a4514b0237b7ea41a2702be3 (patch)
tree868d3814233a9f1cccd7dccdbb8d9121bed57ae0 /input_win.c
parent64041a4aa7f53d976cf507e1cc9be3768bd18a31 (diff)
downloadprofani-tty-ef4c7ce55fcbb6c5a4514b0237b7ea41a2702be3.tar.gz
Bold input bar
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 a2ac1f1d..dfe0939a 100644
--- a/input_win.c
+++ b/input_win.c
@@ -34,6 +34,7 @@ void create_input_window(void)
 
     inp_win = newwin(1, cols, rows-1, 0);
     keypad(inp_win, TRUE);
+    wattron(inp_win, A_BOLD);
     wmove(inp_win, 0, 1);
     wrefresh(inp_win);
 }