diff options
Diffstat (limited to 'Library/UefiShellUfmCommandLib/panel.c')
-rw-r--r-- | Library/UefiShellUfmCommandLib/panel.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Library/UefiShellUfmCommandLib/panel.c b/Library/UefiShellUfmCommandLib/panel.c index f1a9daf..e06a051 100644 --- a/Library/UefiShellUfmCommandLib/panel.c +++ b/Library/UefiShellUfmCommandLib/panel.c @@ -373,3 +373,11 @@ EFI_INPUT_KEY panel_getch(struct panel_ctx *p) return wgetch(p->wbg); } +VOID panel_refresh(struct panel_ctx *p) +{ + wrefresh(p->wbg); + wrefresh(p->wcwd); + wrefresh(p->wlist); + wrefresh(p->wfname); + wrefresh(p->wmarked); +} |