aboutsummaryrefslogtreecommitdiffstats
path: root/src/i_ui.go
diff options
context:
space:
mode:
authorJoe <rbo@gmx.us>2024-01-23 20:20:20 +0100
committerJoe <rbo@gmx.us>2024-01-23 20:20:20 +0100
commit8afce84f357a85a7442655d5d30d67d48e42b7cd (patch)
tree4a7684306f3e1d7f4656a396e2891213f8a2edca /src/i_ui.go
parentgo (diff)
downloadhardflip-8afce84f357a85a7442655d5d30d67d48e42b7cd.tar.gz
hardflip-8afce84f357a85a7442655d5d30d67d48e42b7cd.tar.bz2
hardflip-8afce84f357a85a7442655d5d30d67d48e42b7cd.tar.xz
hardflip-8afce84f357a85a7442655d5d30d67d48e42b7cd.tar.zst
hardflip-8afce84f357a85a7442655d5d30d67d48e42b7cd.zip
ok
Diffstat (limited to 'src/i_ui.go')
-rw-r--r--src/i_ui.go13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/i_ui.go b/src/i_ui.go
index 35b57ea..868f993 100644
--- a/src/i_ui.go
+++ b/src/i_ui.go
@@ -183,10 +183,10 @@ func i_draw_bottom_text(ui HardUI) {
}
i_draw_text(ui.s,
0, ui.dim[H] - 1, ui.dim[W], ui.dim[H] - 1,
- ui.style[DEF_STYLE].Dim(true), text)
+ ui.style[BOT_STYLE], text)
i_draw_text(ui.s,
ui.dim[W] - 5, ui.dim[H] - 1, ui.dim[W], ui.dim[H] - 1,
- ui.style[DEF_STYLE].Dim(true), " " + VERSION)
+ ui.style[BOT_STYLE], " " + VERSION)
}
func i_draw_zhosts_box(ui HardUI) {
@@ -229,11 +229,11 @@ func i_draw_load_error_msg(ui HardUI, load_err []error) {
if line < 0 {
line = 0
}
- for i, err := range load_err {
+ for _, err := range load_err {
line += 1
err_str := fmt.Sprintf("%v", err)
i_draw_text(ui.s, left, line, right, line,
- ui.style[ERR_STYLE], strconv.Itoa(i + 1) + " " + err_str)
+ ui.style[ERR_STYLE], err_str)
}
}
@@ -361,8 +361,9 @@ func i_ui(data_dir string, opts HardOpts) {
ui.style[TITLE_STYLE] = tcell.StyleDefault.
Background(tcell.ColorReset).
Foreground(tcell.ColorBlue).Dim(true).Bold(true)
- ui.style[SEL_STYLE] = tcell.StyleDefault.Background(tcell.ColorBlack)
- // TODO: sel_style
+ ui.style[BOT_STYLE] = tcell.StyleDefault.
+ Background(tcell.ColorReset).
+ Foreground(tcell.ColorBlue).Dim(true)
ui.s.SetStyle(ui.style[DEF_STYLE])
ui.dim[W], ui.dim[H], _ = term.GetSize(0)
ldirs, litems, load_err := i_load_ui(data_dir, opts, &ui)