Add missing dialog_clear() calls.

This commit is contained in:
Jordan K. Hubbard 1996-07-05 07:42:23 +00:00
parent 5f1a3c08d6
commit 3bd9961585
3 changed files with 3 additions and 0 deletions

View File

@ -342,6 +342,7 @@ dialog_checklist(unsigned char *title, unsigned char *prompt, int height, int wi
else if (st & DITEM_RECREATE) {
delwin(list);
delwin(dialog);
dialog_clear();
goto draw;
}
}

View File

@ -395,6 +395,7 @@ dialog_menu(unsigned char *title, unsigned char *prompt, int height, int width,
else if (status & DITEM_RECREATE && !(status & DITEM_LEAVE_MENU)) {
delwin(menu);
delwin(dialog);
dialog_clear();
goto draw;
}
}

View File

@ -347,6 +347,7 @@ dialog_radiolist(unsigned char *title, unsigned char *prompt, int height, int wi
else if (st & DITEM_RECREATE) {
delwin(list);
delwin(dialog);
dialog_clear();
goto draw;
}
}