1
0
mirror of https://github.com/profanity-im/profanity.git synced 2025-01-03 14:57:42 -05:00

Added win_refresh function

This commit is contained in:
James Booth 2013-10-06 01:30:53 +01:00
parent 9c1809a50e
commit 33fc43d5e2
2 changed files with 6 additions and 0 deletions

View File

@ -100,7 +100,12 @@ win_print_line(ProfWin *window, const char * const msg, ...)
wprintw(window->win, "%s\n", fmt_msg->str);
g_string_free(fmt_msg, TRUE);
va_end(arg);
win_refresh(window);
}
void
win_refresh(ProfWin *window)
{
int rows, cols;
getmaxyx(stdscr, rows, cols);
prefresh(window->win, window->y_pos, 0, 1, 0, rows-3, cols-1);

View File

@ -61,6 +61,7 @@ void win_free(ProfWin *window);
void win_print_time(ProfWin *window, char show_char);
void win_print_line(ProfWin *window, const char * const msg, ...);
void win_refresh(ProfWin *window);
void win_presence_colour_on(ProfWin *window, const char * const presence);
void win_presence_colour_off(ProfWin *window, const char * const presence);
void win_show_contact(ProfWin *window, PContact contact);