summaryrefslogtreecommitdiffstats
path: root/release
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1996-04-29 05:09:23 +0000
committerjkh <jkh@FreeBSD.org>1996-04-29 05:09:23 +0000
commited088366eac403ff8775e1e06779f4e529b337c5 (patch)
treecb3644f4dfb140e227d6a39a7b4e69c0054d67b5 /release
parentb431239bb3be5c214ce52625c63686706e1f7c80 (diff)
downloadFreeBSD-src-ed088366eac403ff8775e1e06779f4e529b337c5.zip
FreeBSD-src-ed088366eac403ff8775e1e06779f4e529b337c5.tar.gz
Fix some display bogons in the label editor.
Diffstat (limited to 'release')
-rw-r--r--release/sysinstall/label.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/release/sysinstall/label.c b/release/sysinstall/label.c
index 0338fae..b51abb2 100644
--- a/release/sysinstall/label.c
+++ b/release/sysinstall/label.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: label.c,v 1.45 1996/04/28 03:27:08 jkh Exp $
+ * $Id: label.c,v 1.46 1996/04/28 22:54:18 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -228,8 +228,10 @@ record_label_chunks(Device **devs)
label_chunk_info[j].c = NULL;
if (here >= j)
here = j ? j - 1 : 0;
- if (ChunkWin)
+ if (ChunkWin) {
wclear(ChunkWin);
+ wrefresh(ChunkWin);
+ }
else
ChunkWin = newwin(CHUNK_ROW_MAX - ChunkPartStartRow, 76, ChunkPartStartRow, 0);
}
@@ -509,6 +511,10 @@ diskLabel(char *str)
beep();
msg = NULL;
}
+ else {
+ move(23, 0);
+ clrtoeol();
+ }
key = toupper(getch());
switch (key) {
int i;
OpenPOWER on IntegriCloud