Added refresh() to dialog_clear so that it actually

clears the screen.
Reviewed by:
Submitted by:
Obtained from:
This commit is contained in:
Paul Richards 1994-10-25 15:10:27 +00:00
parent f8a31dd2ac
commit 0adfb6eb99
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=3855

View file

@ -321,6 +321,7 @@ void dialog_clear(void)
{
attr_clear(stdscr, LINES, COLS, screen_attr);
touchwin(stdscr);
refresh();
}
void dialog_update(void)