diff options
author | jkh <jkh@FreeBSD.org> | 1995-10-06 08:47:40 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-10-06 08:47:40 +0000 |
commit | 8d810f90d38d1fa501eecac75e773cd8d7d46deb (patch) | |
tree | f41238a1ce6a21fc7809484e5a8df0f437a73b5f | |
parent | c3d7579ea9ee5cb0326787a5131408ddf358fa9d (diff) | |
download | FreeBSD-src-8d810f90d38d1fa501eecac75e773cd8d7d46deb.zip FreeBSD-src-8d810f90d38d1fa501eecac75e773cd8d7d46deb.tar.gz |
Make descriptions stand-out a bit more.
-rw-r--r-- | release/sysinstall/options.c | 5 | ||||
-rw-r--r-- | usr.sbin/sysinstall/options.c | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/release/sysinstall/options.c b/release/sysinstall/options.c index bb2743e..5009d86 100644 --- a/release/sysinstall/options.c +++ b/release/sysinstall/options.c @@ -4,7 +4,7 @@ * This is probably the last attempt in the `sysinstall' line, the next * generation being slated for what's essentially a complete rewrite. * - * $Id: options.c,v 1.2 1995/10/04 10:34:04 jkh Exp $ + * $Id: options.c,v 1.3 1995/10/04 12:08:21 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -218,9 +218,12 @@ optionsEditor(char *str) } clrtoeol(); } + standout(); mvaddstr(OPT_END_ROW + 3, 0, Options[currOpt].desc); + standend(); clrtoeol(); move(0, 14); + /* Start the edit loop */ key = toupper(getch()); switch (key) { diff --git a/usr.sbin/sysinstall/options.c b/usr.sbin/sysinstall/options.c index bb2743e..5009d86 100644 --- a/usr.sbin/sysinstall/options.c +++ b/usr.sbin/sysinstall/options.c @@ -4,7 +4,7 @@ * This is probably the last attempt in the `sysinstall' line, the next * generation being slated for what's essentially a complete rewrite. * - * $Id: options.c,v 1.2 1995/10/04 10:34:04 jkh Exp $ + * $Id: options.c,v 1.3 1995/10/04 12:08:21 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -218,9 +218,12 @@ optionsEditor(char *str) } clrtoeol(); } + standout(); mvaddstr(OPT_END_ROW + 3, 0, Options[currOpt].desc); + standend(); clrtoeol(); move(0, 14); + /* Start the edit loop */ key = toupper(getch()); switch (key) { |