diff options
author | P. J. McDermott <pj@pehjota.net> | 2015-10-29 00:02:52 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2015-10-29 00:02:52 (EDT) |
commit | 4337caddabfb23cee8831e2b2374e2af53a13068 (patch) | |
tree | 85d738c19d8ccff085469f25f19c267e8d2eebff | |
parent | 95261e8fa0e96c7424afc6b7ee0788abe01579f1 (diff) | |
download | firman.sh-4337caddabfb23cee8831e2b2374e2af53a13068.zip firman.sh-4337caddabfb23cee8831e2b2374e2af53a13068.tar.gz firman.sh-4337caddabfb23cee8831e2b2374e2af53a13068.tar.bz2 |
_tui_dialog(): Use line on top of warning icon
-rw-r--r-- | src/ui/tui.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ui/tui.sh b/src/ui/tui.sh index 01720d6..962e731 100644 --- a/src/ui/tui.sh +++ b/src/ui/tui.sh @@ -91,8 +91,11 @@ _tui_dialog() term_cursor_forward 2 case "${lvl}" in warn) + term_cursor_forward 1 term_fg_color_set yellow - term_write ' .' + term_attr_on underline + term_write ' ' + term_attr_off underline term_cursor_back 2 term_cursor_down 1 term_attr_on underline |