diff options
author | ache <ache@FreeBSD.org> | 1994-10-24 04:14:23 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1994-10-24 04:14:23 +0000 |
commit | 0cadb3ec802c70230ea768077774af83217bd20f (patch) | |
tree | f5d6b8a7a2c4fa3f7b9115fcb89bb3b51f5b5f67 /sbin/sysinstall/label.c | |
parent | 03c5dcf2510f352e048c7051cd6c19fb71fd627b (diff) | |
download | FreeBSD-src-0cadb3ec802c70230ea768077774af83217bd20f.zip FreeBSD-src-0cadb3ec802c70230ea768077774af83217bd20f.tar.gz |
label.c: add delwin(window)
mbr.c: use proper dims for newwin, add shadow
both: add ' ' and ESC as valid end-keys
Diffstat (limited to 'sbin/sysinstall/label.c')
-rw-r--r-- | sbin/sysinstall/label.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/sysinstall/label.c b/sbin/sysinstall/label.c index 51d5d73..928ffce 100644 --- a/sbin/sysinstall/label.c +++ b/sbin/sysinstall/label.c @@ -67,8 +67,9 @@ display_disklabel(int disk) dialog_update(); - while (key != '\n') + while (key != '\n' && key != ' ' && key != '\033') key = wgetch(window); + delwin(window); dialog_clear(); dialog_update(); } |