diff options
author | Joe <rbo@gmx.us> | 2025-01-20 17:41:05 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2025-01-20 17:41:05 +0100 |
commit | 8a713881f2bee207981b2883518138a4cfdd6adc (patch) | |
tree | 74c5c60f2b81e5f25a9f3398fcd1b021fdc5c39c /src/i_host.go | |
parent | okok (diff) | |
download | hardflip-8a713881f2bee207981b2883518138a4cfdd6adc.tar.gz hardflip-8a713881f2bee207981b2883518138a4cfdd6adc.tar.bz2 hardflip-8a713881f2bee207981b2883518138a4cfdd6adc.tar.xz hardflip-8a713881f2bee207981b2883518138a4cfdd6adc.tar.zst hardflip-8a713881f2bee207981b2883518138a4cfdd6adc.zip |
box style or something
Diffstat (limited to 'src/i_host.go')
-rw-r--r-- | src/i_host.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/i_host.go b/src/i_host.go index 7d3fd57..c37f0ac 100644 --- a/src/i_host.go +++ b/src/i_host.go @@ -110,6 +110,8 @@ func i_host_panel_host(ui HardUI, icons bool, func i_draw_host_panel(ui HardUI, icons bool, litems *ItemsList, data *HardData) { + if ui.mode == FUZZ_MODE { + } i_draw_box(ui.s, 0, 0, ui.dim[W] / 3, ui.dim[H] - 2, ui.style[BOX_STYLE], ui.style[HEAD_STYLE], " Hosts ", false) @@ -124,6 +126,7 @@ func i_draw_host_panel(ui HardUI, icons bool, // } for ptr := litems.draw; ptr != nil && line < ui.dim[H] - 2; ptr = ptr.next { if ui.mode == FUZZ_MODE && i_fuzz_check(ptr, &ui) == false { + // TODO: here continue } if ptr.is_dir() == false && ptr.Host != nil { |