Fix compilation error

This commit is contained in:
Tulir Asokan 2020-02-20 22:42:53 +02:00
parent fa8147f07a
commit 852023c611

View File

@ -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