diff options
author | Joe <rbo@gmx.us> | 2024-09-23 15:35:24 +0200 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-09-23 15:35:24 +0200 |
commit | 34d245a9838ea21c170515c485f621a0ca75a146 (patch) | |
tree | dea860e41577da876e33f44ae935caadf69a79b4 | |
parent | wipwip (diff) | |
download | hardflip-34d245a9838ea21c170515c485f621a0ca75a146.tar.gz hardflip-34d245a9838ea21c170515c485f621a0ca75a146.tar.bz2 hardflip-34d245a9838ea21c170515c485f621a0ca75a146.tar.xz hardflip-34d245a9838ea21c170515c485f621a0ca75a146.tar.zst hardflip-34d245a9838ea21c170515c485f621a0ca75a146.zip |
wip
-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 ed4ac77..f697ed2 100644 --- a/src/i_host.go +++ b/src/i_host.go @@ -117,6 +117,9 @@ func i_draw_host_panel(ui HardUI, icons bool, if litems == nil || litems.head == nil { return } + if ui.mode == FUZZ_MODE { + return + } for ptr := litems.draw; ptr != nil && line < ui.dim[H] - 2; ptr = ptr.next { if ptr.is_dir() == false && ptr.Host != nil { i_host_panel_host(ui, |