Small tweaks in reaction delegate.

This commit is contained in:
Black Hat
2019-09-30 11:24:27 -07:00
parent 4d46390186
commit ebea18b9af

View File

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