Add missing dialog_clear() calls.
This commit is contained in:
parent
5f1a3c08d6
commit
3bd9961585
@ -342,6 +342,7 @@ dialog_checklist(unsigned char *title, unsigned char *prompt, int height, int wi
|
|||||||
else if (st & DITEM_RECREATE) {
|
else if (st & DITEM_RECREATE) {
|
||||||
delwin(list);
|
delwin(list);
|
||||||
delwin(dialog);
|
delwin(dialog);
|
||||||
|
dialog_clear();
|
||||||
goto draw;
|
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)) {
|
else if (status & DITEM_RECREATE && !(status & DITEM_LEAVE_MENU)) {
|
||||||
delwin(menu);
|
delwin(menu);
|
||||||
delwin(dialog);
|
delwin(dialog);
|
||||||
|
dialog_clear();
|
||||||
goto draw;
|
goto draw;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -347,6 +347,7 @@ dialog_radiolist(unsigned char *title, unsigned char *prompt, int height, int wi
|
|||||||
else if (st & DITEM_RECREATE) {
|
else if (st & DITEM_RECREATE) {
|
||||||
delwin(list);
|
delwin(list);
|
||||||
delwin(dialog);
|
delwin(dialog);
|
||||||
|
dialog_clear();
|
||||||
goto draw;
|
goto draw;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user