From 9840888f9b7eeefeaf3694aa762b3afcfc1af61d Mon Sep 17 00:00:00 2001 From: raven Date: Tue, 10 Feb 2026 18:02:45 -0600 Subject: fix unread status not clearing on mouse click --- client/channel_list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'client') diff --git a/client/channel_list.go b/client/channel_list.go index c202d39..24c5230 100644 --- a/client/channel_list.go +++ b/client/channel_list.go @@ -137,7 +137,7 @@ func (cl *channelList) show(scroll *tui.ScrollState) { if mouse.Released { globalApp.redraw = true if entry.clicked { - globalApp.goTo(entry.location) + defer globalApp.goTo(entry.location) } else { for j, entry2 := range *cl { if entry2.clicked { -- cgit v1.2.3