1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-10-06 20:03:46 -04:00

Added back in call to inp_clear_no_pad()

This commit is contained in:
James Booth 2013-01-05 21:41:12 +00:00
parent 8427d0684f
commit d24c57036c

View File

@ -111,8 +111,7 @@ inp_clear(void)
{ {
int rows, cols; int rows, cols;
getmaxyx(stdscr, rows, cols); getmaxyx(stdscr, rows, cols);
wclear(inp_win); _inp_clear_no_pad();
wmove(inp_win, 0, 0);
pad_start = 0; pad_start = 0;
prefresh(inp_win, 0, pad_start, rows-1, 0, rows-1, cols-1); prefresh(inp_win, 0, pad_start, rows-1, 0, rows-1, cols-1);
} }