summaryrefslogtreecommitdiff
path: root/ui/ui.go
diff options
context:
space:
mode:
authorHubert Hirtz <hubert@hirtzfr.eu>2020-09-02 00:06:37 +0200
committerHubert Hirtz <hubert@hirtzfr.eu>2020-09-02 16:00:57 +0200
commit3ea19ff21e5cda8afca7f8114e18466e9cf7663e (patch)
tree833a97485ebd98a2d1fd805db6f3eeacaf30127a /ui/ui.go
parentirc: Reset typing ratelimiter after sent message (diff)
Typing indicator timeout
Diffstat (limited to 'ui/ui.go')
-rw-r--r--ui/ui.go8
1 files changed, 2 insertions, 6 deletions
diff --git a/ui/ui.go b/ui/ui.go
index dc6e73a..9d295ce 100644
--- a/ui/ui.go
+++ b/ui/ui.go
@@ -113,12 +113,8 @@ func (ui *UI) AddLines(buffer string, lines []Line) {
ui.bs.AddLines(buffer, lines)
}
-func (ui *UI) TypingStart(buffer, nick string) {
- ui.bs.TypingStart(buffer, nick)
-}
-
-func (ui *UI) TypingStop(buffer, nick string) {
- ui.bs.TypingStop(buffer, nick)
+func (ui *UI) SetStatus(status string) {
+ ui.bs.SetStatus(status)
}
func (ui *UI) InputIsCommand() bool {