1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-26 16:18:31 +00:00

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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=16973
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;
}
}