Added win_clear() function

This commit is contained in:
James Booth
2015-06-15 17:54:47 +01:00
parent e9aa4ea084
commit a849b200b3
8 changed files with 13 additions and 18 deletions

View File

@@ -458,6 +458,13 @@ win_sub_page_up(ProfWin *window)
}
}
void
win_clear(ProfWin *window)
{
werase(window->layout->win);
win_update_virtual(window);
}
void
win_mouse(ProfWin *window, const wint_t ch, const int result)
{