diff options
author | Joe <rbo@gmx.us> | 2024-05-10 20:20:20 +0200 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-05-10 20:20:20 +0200 |
commit | 93ae2134804faed36c2fbe1be8ff02fe1aec95e4 (patch) | |
tree | f2748f06b3ac37ba282017ab2ed939695fe20af4 /src/i_ui.go | |
parent | go (diff) | |
download | hardflip-93ae2134804faed36c2fbe1be8ff02fe1aec95e4.tar.gz hardflip-93ae2134804faed36c2fbe1be8ff02fe1aec95e4.tar.bz2 hardflip-93ae2134804faed36c2fbe1be8ff02fe1aec95e4.tar.xz hardflip-93ae2134804faed36c2fbe1be8ff02fe1aec95e4.tar.zst hardflip-93ae2134804faed36c2fbe1be8ff02fe1aec95e4.zip |
gogo
Diffstat (limited to 'src/i_ui.go')
-rw-r--r-- | src/i_ui.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/i_ui.go b/src/i_ui.go index 4de176f..3e0de04 100644 --- a/src/i_ui.go +++ b/src/i_ui.go @@ -76,6 +76,7 @@ type HardUI struct { insert_scroll int insert_butt bool help_scroll int + help_end bool } type Quad struct { @@ -756,7 +757,7 @@ func i_ui(data_dir string) { case RENAME_MODE: i_prompt_insert(data.ui, data.litems.curr) case HELP_MODE: - i_draw_help(data.ui) + i_draw_help(&data.ui) } data.ui.s.Show() e_events(&data, fp) |