summary refs log tree commit diff
path: root/resources
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2020-05-04 13:41:18 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2020-05-04 13:41:18 +0200
commit846ff33ed8ab4940e52b329431c61a5aa5109d30 (patch)
tree20ffc6aecb617fef6bbed700984538a33dccebff /resources
parentBasic, broken reaction display (diff)
downloadnheko-846ff33ed8ab4940e52b329431c61a5aa5109d30.tar.xz
Position reaction emoji and text on the same baseline
Diffstat (limited to 'resources')
-rw-r--r--resources/qml/Reactions.qml2
1 files changed, 2 insertions, 0 deletions
diff --git a/resources/qml/Reactions.qml b/resources/qml/Reactions.qml
index c15f0b3d..a33d5f61 100644
--- a/resources/qml/Reactions.qml
+++ b/resources/qml/Reactions.qml
@@ -27,6 +27,7 @@ Flow {
 				padding: 4
 
 				Text {
+					anchors.baseline: reactionCounter.baseline
 					id: reactionText
 					text: reaction.text
 					font.family: settings.emoji_font_family
@@ -44,6 +45,7 @@ Flow {
 				}
 
 				Text {
+					id: reactionCounter
 					text: model.counter
 					font: reaction.font
 					opacity: enabled ? 1.0 : 0.3