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 | 68843388c21806b63d909bf799c7ac7e9590abb6 (patch) | |
tree | d9a09495f1925f31844725ac2eaf61fe653adfa8 /i_events.go | |
parent | fixed segv (diff) | |
download | hardflip-68843388c21806b63d909bf799c7ac7e9590abb6.tar.gz hardflip-68843388c21806b63d909bf799c7ac7e9590abb6.tar.bz2 hardflip-68843388c21806b63d909bf799c7ac7e9590abb6.tar.xz hardflip-68843388c21806b63d909bf799c7ac7e9590abb6.tar.zst hardflip-68843388c21806b63d909bf799c7ac7e9590abb6.zip |
go full double list, maybe map
Diffstat (limited to '')
-rw-r--r-- | i_events.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/i_events.go b/i_events.go index 85bded3..7f05f21 100644 --- a/i_events.go +++ b/i_events.go @@ -81,7 +81,7 @@ func i_list_follow_cursor(litems *ItemsList, ui *HardUI) { litems.draw_start.prev != nil { litems.draw_start = litems.draw_start.prev } - fmt.Println(">>>>> DRAW_START:", litems.draw_start.ID, "<<<<<<< >>>>>>>> VIRT_ID:", virt_id) + // fmt.Println(">>>>> DRAW_START:", litems.draw_start.ID, "<<<<<<< >>>>>>>> VIRT_ID:", virt_id) if litems.draw_start.prev != nil && litems.draw_start.prev.is_dir() == true && litems.draw_start.prev.Dirs.Folded == true { @@ -94,7 +94,7 @@ func i_list_follow_cursor(litems *ItemsList, ui *HardUI) { func i_reload_data(data *HardData) { // TODO: remove this after debug - // fmt.Println("remove me sometime") + fmt.Println("remove me sometime") data.data_dir = c_get_data_dir() data.ldirs = c_load_data_dir(data.data_dir, data.opts) data.litems = c_load_litems(data.ldirs) |