aboutsummaryrefslogtreecommitdiffstats
path: root/src/i_ui.go
diff options
context:
space:
mode:
authorJoe <rbo@gmx.us>2024-05-10 20:20:20 +0200
committerJoe <rbo@gmx.us>2024-05-10 20:20:20 +0200
commitcd0fc6ff5daa6f59d542b9bfa15a8a48792c1d6e (patch)
tree06dcabb740969ecc63b4d06957144bbc9ebb4163 /src/i_ui.go
parenti know very well it aint right but hey cut me some slack ok im doing myy best... (diff)
downloadhardflip-cd0fc6ff5daa6f59d542b9bfa15a8a48792c1d6e.tar.gz
hardflip-cd0fc6ff5daa6f59d542b9bfa15a8a48792c1d6e.tar.bz2
hardflip-cd0fc6ff5daa6f59d542b9bfa15a8a48792c1d6e.tar.xz
hardflip-cd0fc6ff5daa6f59d542b9bfa15a8a48792c1d6e.tar.zst
hardflip-cd0fc6ff5daa6f59d542b9bfa15a8a48792c1d6e.zip
new mode ok
Diffstat (limited to '')
-rw-r--r--src/i_ui.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/i_ui.go b/src/i_ui.go
index 09a1d65..327eb4c 100644
--- a/src/i_ui.go
+++ b/src/i_ui.go
@@ -713,6 +713,7 @@ func i_ui(data_dir string) {
MKDIR_MODE: e_mkdir_events,
INSERT_MODE: e_insert_events,
RENAME_MODE: e_rename_events,
+ HELP_MODE: e_help_events,
}
for {
data.ui.s.Clear()
@@ -751,6 +752,8 @@ 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)
}
data.ui.s.Show()
e_events(&data, fp)