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:
parent
5f1a3c08d6
commit
3bd9961585
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=16973
@ -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;
|
||||
}
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user