mirror of
https://github.com/nextcloud/talk-android
synced 2025-02-02 20:53:09 +00:00
Merge pull request #1989 from nextcloud/bugfix/1983/alwaysShowCount
Always show reaction count
This commit is contained in:
commit
41a00f43ac
@ -75,13 +75,11 @@ class Reaction {
|
||||
|
||||
emojiWithAmountWrapper.addView(reactionEmoji)
|
||||
|
||||
if (amount > 1) {
|
||||
val reactionAmount = TextView(context)
|
||||
reactionAmount.setTextColor(textColor)
|
||||
reactionAmount.text = amount.toString()
|
||||
reactionAmount.layoutParams = amountParams
|
||||
emojiWithAmountWrapper.addView(reactionAmount)
|
||||
}
|
||||
val reactionAmount = TextView(context)
|
||||
reactionAmount.setTextColor(textColor)
|
||||
reactionAmount.text = amount.toString()
|
||||
reactionAmount.layoutParams = amountParams
|
||||
emojiWithAmountWrapper.addView(reactionAmount)
|
||||
|
||||
emojiWithAmountWrapper.layoutParams = wrapperParams
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user