diff options
author | delthas <delthas@dille.cc> | 2021-11-24 16:01:59 +0100 |
---|---|---|
committer | Hubert Hirtz <hubert@hirtz.pm> | 2021-11-24 16:08:07 +0100 |
commit | d41d7c5d975a4b9d80779065c4a4d9e09b35ae91 (patch) | |
tree | ef0a7ba5ca1ba5270d8a28c002c2fe1d13cf920a /ui/ui.go | |
parent | Only use first line of `password-cmd` output (diff) |
Show the current channel topic at the top of the timeline
Diffstat (limited to '')
-rw-r--r-- | ui/ui.go | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -231,6 +231,10 @@ func (ui *UI) JumpBufferNetwork(netID, sub string) bool { return false } +func (ui *UI) SetTopic(netID, buffer string, topic string) { + ui.bs.SetTopic(netID, buffer, topic) +} + func (ui *UI) SetStatus(status string) { ui.status = status } |