From 049101c45cd2935168ed27560a95bd69a2ca6df0 Mon Sep 17 00:00:00 2001 From: Hubert Hirtz Date: Mon, 6 Dec 2021 12:56:47 +0100 Subject: Do not mark the buffer as unread on MODE --- app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app.go') diff --git a/app.go b/app.go index 636efba..22d5364 100644 --- a/app.go +++ b/app.go @@ -698,7 +698,7 @@ func (app *App) handleIRCEvent(netID string, ev interface{}) { app.win.SetTopic(netID, ev.Channel, topic) case irc.ModeChangeEvent: line := app.formatEvent(ev) - app.win.AddLine(netID, ev.Channel, ui.NotifyUnread, line) + app.win.AddLine(netID, ev.Channel, ui.NotifyNone, line) case irc.InviteEvent: var buffer string var notify ui.NotifyType -- cgit v1.2.3