diff options
author | Hubert Hirtz <hubert@hirtzfr.eu> | 2020-09-02 00:06:37 +0200 |
---|---|---|
committer | Hubert Hirtz <hubert@hirtzfr.eu> | 2020-09-02 16:00:57 +0200 |
commit | 3ea19ff21e5cda8afca7f8114e18466e9cf7663e (patch) | |
tree | 833a97485ebd98a2d1fd805db6f3eeacaf30127a /ui/ui.go | |
parent | irc: Reset typing ratelimiter after sent message (diff) |
Typing indicator timeout
Diffstat (limited to 'ui/ui.go')
-rw-r--r-- | ui/ui.go | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -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 { |