diff options
author | Joe <rbo@gmx.us> | 2024-01-10 20:20:20 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-01-10 20:20:20 +0100 |
commit | 29d3811e9b44bdf532a8b87ee5fe61fd3a0e71a6 (patch) | |
tree | b983c6ad396de43f25980bdfe14d0517b8e150f8 /i_ui.go | |
parent | revert if needed (diff) | |
download | hardflip-29d3811e9b44bdf532a8b87ee5fe61fd3a0e71a6.tar.gz hardflip-29d3811e9b44bdf532a8b87ee5fe61fd3a0e71a6.tar.bz2 hardflip-29d3811e9b44bdf532a8b87ee5fe61fd3a0e71a6.tar.xz hardflip-29d3811e9b44bdf532a8b87ee5fe61fd3a0e71a6.tar.zst hardflip-29d3811e9b44bdf532a8b87ee5fe61fd3a0e71a6.zip |
trying that map
Diffstat (limited to '')
-rw-r--r-- | i_ui.go | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -43,7 +43,7 @@ * POSSIBILITY OF SUCH DAMAGE. * * hardflip: src/i_ui.go - * Tue Jan 09 12:00:46 2024 + * Wed Jan 10 11:30:15 2024 * Joe * * interfacing with the user @@ -64,7 +64,7 @@ type HardUI struct { def_style tcell.Style dir_style tcell.Style title_style tcell.Style - folded_count int + // folded_count int dim [2]int } @@ -284,9 +284,9 @@ func i_host_panel(ui HardUI, icons bool, litems *ItemsList) { line := 1 ptr := litems.draw_start for ptr = ptr; ptr != nil && line < ui.dim[H] - 2; ptr = ptr.next { - if ptr.folded_parents() == true { - continue - } + // if ptr.folded_parents() == true { + // continue + // } if ptr.is_dir() == false && ptr.Host != nil { i_host_panel_host(ui, icons, |