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 | 70c7c5d6e110d42dd2d8404268d283baf78626fb (patch) | |
tree | cdfd6efd09c9237351f72c54357e10549326b066 /src/e_keys.go | |
parent | help (diff) | |
download | hardflip-70c7c5d6e110d42dd2d8404268d283baf78626fb.tar.gz hardflip-70c7c5d6e110d42dd2d8404268d283baf78626fb.tar.bz2 hardflip-70c7c5d6e110d42dd2d8404268d283baf78626fb.tar.xz hardflip-70c7c5d6e110d42dd2d8404268d283baf78626fb.tar.zst hardflip-70c7c5d6e110d42dd2d8404268d283baf78626fb.zip |
go
Diffstat (limited to '')
-rw-r--r-- | src/e_keys.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/e_keys.go b/src/e_keys.go index 079dc88..9f82ccc 100644 --- a/src/e_keys.go +++ b/src/e_keys.go @@ -842,6 +842,7 @@ func e_help_events(data *HardData, ui *HardUI, event tcell.EventKey) bool { return true } else if event.Rune() == 'j' || event.Key() == tcell.KeyDown { + ui.help_scroll += 1 } else if event.Rune() == 'k' || event.Key() == tcell.KeyUp { if ui.help_scroll >= 0 { |