diff options
author | delthas <delthas@dille.cc> | 2022-04-20 17:23:54 +0200 |
---|---|---|
committer | delthas <delthas@dille.cc> | 2022-04-20 17:23:54 +0200 |
commit | 20c2b265c504ae47b959e60088aa6da41bef3263 (patch) | |
tree | 7451e1397d8b87d98843a5fa5f48326a9a779e07 /ui/ui.go | |
parent | Show/hide the channel & member list with F7/F8 (diff) |
Scroll horizontal channel list with the mouse wheel
This is inspired by a patch by mooff.
The horizontal channel list can now be scrolled with the mouse wheel.
Diffstat (limited to 'ui/ui.go')
-rw-r--r-- | ui/ui.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -415,7 +415,7 @@ func (ui *UI) Draw(members []irc.Member) { ui.bs.DrawTimeline(ui.screen, ui.channelWidth, 0, ui.config.NickColWidth) if ui.channelWidth == 0 { - ui.bs.DrawHorizontalBufferList(ui.screen, 0, h-1, w-ui.memberWidth) + ui.bs.DrawHorizontalBufferList(ui.screen, 0, h-1, w-ui.memberWidth, &ui.channelOffset) } else { ui.bs.DrawVerticalBufferList(ui.screen, 0, 0, ui.channelWidth, h, &ui.channelOffset) } |