aboutsummaryrefslogtreecommitdiffstats
path: root/i_ui.go
diff options
context:
space:
mode:
authorJoe <rbo@gmx.us>2024-01-10 20:20:20 +0100
committerJoe <rbo@gmx.us>2024-01-10 20:20:20 +0100
commit29d3811e9b44bdf532a8b87ee5fe61fd3a0e71a6 (patch)
treeb983c6ad396de43f25980bdfe14d0517b8e150f8 /i_ui.go
parentrevert if needed (diff)
downloadhardflip-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.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/i_ui.go b/i_ui.go
index 258ab02..d4b19ff 100644
--- a/i_ui.go
+++ b/i_ui.go
@@ -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,