From 852023c61106dfc1310ffbe224a469aaa01a8fda Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Thu, 20 Feb 2020 22:42:53 +0200 Subject: Fix compilation error --- ui/messages/base.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'ui') diff --git a/ui/messages/base.go b/ui/messages/base.go index d8ebc9a..0c9025e 100644 --- a/ui/messages/base.go +++ b/ui/messages/base.go @@ -19,7 +19,6 @@ package messages import ( "fmt" "sort" - "strings" "time" "maunium.net/go/gomuks/config" @@ -138,7 +137,6 @@ func (msg *UIMessage) AddReaction(key string) { }) } sort.Sort(msg.Reactions) - msg.CalculateReactionBuffer() } func unixToTime(unix int64) time.Time { @@ -306,7 +304,7 @@ func (msg *UIMessage) DrawReactions(screen mauview.Screen) { x := 0 for _, reaction := range msg.Reactions { - _, drawn := mauview.PrintWithStyle(screen, reaction.String(), x, 0, width - x, mauview.AlignLeft, tcell.StyleDefault.Foreground(mauview.Styles.PrimaryTextColor).Background(tcell.ColorDarkGreen)) + _, drawn := mauview.PrintWithStyle(screen, reaction.String(), x, 0, width-x, mauview.AlignLeft, tcell.StyleDefault.Foreground(mauview.Styles.PrimaryTextColor).Background(tcell.ColorDarkGreen)) x += drawn + 1 if x >= width { break -- cgit v1.2.3