Tweak reaction size.

This commit is contained in:
Black Hat
2019-07-21 20:53:22 +08:00
parent 761943f98f
commit 1de54e0ec1
2 changed files with 3 additions and 2 deletions

View File

@@ -222,6 +222,7 @@ ColumnLayout {
} }
ReactionDelegate { ReactionDelegate {
Layout.topMargin: 0
Layout.bottomMargin: 8 Layout.bottomMargin: 8
Layout.leftMargin: 16 Layout.leftMargin: 16
Layout.rightMargin: 16 Layout.rightMargin: 16

View File

@@ -10,7 +10,7 @@ RowLayout {
model: reaction model: reaction
delegate: Control { delegate: Control {
horizontalPadding: 4 horizontalPadding: 6
verticalPadding: 0 verticalPadding: 0
background: Rectangle { background: Rectangle {
@@ -20,7 +20,7 @@ RowLayout {
contentItem: Label { contentItem: Label {
text: modelData.reaction + " " + modelData.count text: modelData.reaction + " " + modelData.count
font.pixelSize: 10 font.pixelSize: 14
} }
} }
} }