diff options
Diffstat (limited to 'app.go')
-rw-r--r-- | app.go | 11 |
1 files changed, 0 insertions, 11 deletions
@@ -199,20 +199,9 @@ func (app *App) handleIRCEvent(ev irc.Event) { if hlNotification { app.notifyHighlight(buffer, ev.User.Name, ev.Content) } - app.win.TypingStop(buffer, ev.User.Name) if !ev.TargetIsChannel && app.s.NickCf() != app.s.Casemap(ev.User.Name) { app.lastQuery = ev.User.Name } - case irc.TagEvent: - buffer := ev.Target - if !ev.TargetIsChannel { - buffer = Home - } - if ev.Typing == irc.TypingActive || ev.Typing == irc.TypingPaused { - app.win.TypingStart(buffer, ev.User.Name) - } else if ev.Typing == irc.TypingDone { - app.win.TypingStop(buffer, ev.User.Name) - } case irc.HistoryEvent: var lines []ui.Line for _, m := range ev.Messages { |