1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-29 19:56:07 -04:00

Bold input bar

This commit is contained in:
James Booth 2012-02-28 02:00:34 +00:00
parent 64041a4aa7
commit ef4c7ce55f

View File

@ -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);
}