aboutsummaryrefslogtreecommitdiffstats
path: root/Library/UefiShellUfmCommandLib/panel.c
diff options
context:
space:
mode:
authorJoursoir <chat@joursoir.net>2021-11-27 16:56:54 +0300
committerJoursoir <chat@joursoir.net>2021-11-27 16:56:54 +0300
commitf031dc9d65df69a74efa9a2021fcdecd59b79702 (patch)
tree7fd4f47be9fa04850478faf33197eada041c45a3 /Library/UefiShellUfmCommandLib/panel.c
parentc449ba91eed64e2862cb1c1ac0627a4d5a7b511f (diff)
downloadufm-f031dc9d65df69a74efa9a2021fcdecd59b79702.tar.gz
ufm-f031dc9d65df69a74efa9a2021fcdecd59b79702.tar.bz2
ufm-f031dc9d65df69a74efa9a2021fcdecd59b79702.zip
panel: add the window for display the amount of marked files
Diffstat (limited to 'Library/UefiShellUfmCommandLib/panel.c')
-rw-r--r--Library/UefiShellUfmCommandLib/panel.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/Library/UefiShellUfmCommandLib/panel.c b/Library/UefiShellUfmCommandLib/panel.c
index 850191f..3c6cc6c 100644
--- a/Library/UefiShellUfmCommandLib/panel.c
+++ b/Library/UefiShellUfmCommandLib/panel.c
@@ -57,6 +57,10 @@ struct panel_ctx *panel_alloc(struct screen *scr, CONST CHAR16 *path,
if(!panel->wfname)
break;
+ panel->wmarked = newwin(scr, cols - 4, 1, x + 2, lines - 2);
+ if(!panel->wmarked)
+ break;
+
res = TRUE;
} while(0); // END DO
@@ -93,6 +97,8 @@ VOID panel_release(struct panel_ctx *p)
delwin(p->wlist);
if(p->wfname)
delwin(p->wfname);
+ if(p->wmarked)
+ delwin(p->wmarked);
FreePool(p);
}