Use wnoutrefresh() in clear_norefresh

This commit is contained in:
Andrey A. Chernov 1994-11-17 23:08:57 +00:00
parent 1a796bb52a
commit 934a5f3e30
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4575

View file

@ -410,12 +410,13 @@ void dialog_clear_norefresh(void)
{
attr_clear(stdscr, LINES, COLS, screen_attr);
touchwin(stdscr);
wnoutrefresh(stdscr);
}
void dialog_clear(void)
{
dialog_clear_norefresh();
refresh();
doupdate();
}
void dialog_update(void)