We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e98e2d2 commit f76f22eCopy full SHA for f76f22e
ui/imports/shared/controls/chat/MessageReactionsRow.qml
@@ -36,6 +36,10 @@ Row {
36
sourceModel: root.emojiModel
37
38
filters: [
39
+ IndexFilter {
40
+ // Only show the first 5 emojis
41
+ maximumIndex: 4
42
+ },
43
AnyOf {
44
ValueFilter {
45
roleName: "skinColor"
ui/imports/shared/views/chat/MessageContextMenuView.qml
@@ -66,8 +66,8 @@ StatusMenu {
66
}
67
68
StatusMenuSeparator {
69
- // FIXME there is a padding on each side
70
visible: emojiRow.visible && !root.disabledForChat
+ horizontalPadding: 0
71
72
73
StatusAction {
@@ -150,6 +150,7 @@ StatusMenu {
150
editMessageAction.enabled ||
151
pinAction.enabled ||
152
markMessageAsUnreadAction.enabled)
153
154
155
156
0 commit comments