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 | 954dbb54bd41e964bb328cdb381d47ff2d468771 (patch) | |
tree | 0aa2a30c1f51ec9c3483c02bb6a1dc77e6b4ae24 /src/i_ui.go | |
parent | better (diff) | |
download | hardflip-954dbb54bd41e964bb328cdb381d47ff2d468771.tar.gz hardflip-954dbb54bd41e964bb328cdb381d47ff2d468771.tar.bz2 hardflip-954dbb54bd41e964bb328cdb381d47ff2d468771.tar.xz hardflip-954dbb54bd41e964bb328cdb381d47ff2d468771.tar.zst hardflip-954dbb54bd41e964bb328cdb381d47ff2d468771.zip |
go
Diffstat (limited to 'src/i_ui.go')
-rw-r--r-- | src/i_ui.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/i_ui.go b/src/i_ui.go index 327eb4c..4de176f 100644 --- a/src/i_ui.go +++ b/src/i_ui.go @@ -75,6 +75,7 @@ type HardUI struct { insert_method int insert_scroll int insert_butt bool + help_scroll int } type Quad struct { @@ -208,6 +209,8 @@ func i_draw_bottom_text(ui HardUI, opts HardOpts, } else { text = INSERT_KEYS_HINTS } + case HELP_MODE: + text = HELP_KEYS_HINTS default: text = "" } |