From ebea18b9af3423628cdef5f545d05af7bd5e2041 Mon Sep 17 00:00:00 2001 From: Black Hat Date: Mon, 30 Sep 2019 11:24:27 -0700 Subject: [PATCH] Small tweaks in reaction delegate. --- imports/Spectral/Component/Timeline/ReactionDelegate.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/imports/Spectral/Component/Timeline/ReactionDelegate.qml b/imports/Spectral/Component/Timeline/ReactionDelegate.qml index ef606ccc3..8e825f2e8 100644 --- a/imports/Spectral/Component/Timeline/ReactionDelegate.qml +++ b/imports/Spectral/Component/Timeline/ReactionDelegate.qml @@ -48,7 +48,8 @@ Flow { } contentItem: Label { - text: modelData.reaction + " " + modelData.count + text: modelData.reaction + (modelData.count > 1 ? " " + modelData.count : "") + color: MPalette.lighter font.pixelSize: 14 } }